-
Notifications
You must be signed in to change notification settings - Fork 0
/
externals.rb
49 lines (35 loc) · 1.49 KB
/
externals.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
MxxRu::arch_externals :restinio do |e|
e.url 'https://github.com/Stiffstream/restinio/releases/download/v.0.6.11/restinio-0.6.11.zip'
e.map_dir 'dev/restinio' => 'dev'
e.map_file 'dev/nodejs/http_parser/CMakeLists.txt' => 'dev/nodejs/http_parser/*'
end
MxxRu::arch_externals :asio do |e|
e.url 'https://github.com/chriskohlhoff/asio/archive/asio-1-18-0.tar.gz'
e.map_dir 'asio/include' => 'dev/asio'
end
MxxRu::arch_externals :asio_mxxru do |e|
e.url 'https://github.com/Stiffstream/asio_mxxru/archive/1.1.2.tar.gz'
e.map_dir 'dev/asio_mxxru' => 'dev'
end
MxxRu::arch_externals :nodejs_http_parser do |e|
e.url 'https://github.com/nodejs/http-parser/archive/v2.9.4.tar.gz'
e.map_file 'http_parser.h' => 'dev/nodejs/http_parser/*'
e.map_file 'http_parser.c' => 'dev/nodejs/http_parser/*'
end
MxxRu::arch_externals :nodejs_http_parser_mxxru do |e|
e.url 'https://github.com/Stiffstream/nodejs_http_parser_mxxru/archive/v.0.2.1.tar.gz'
e.map_dir 'dev/nodejs/http_parser_mxxru' => 'dev/nodejs'
end
MxxRu::arch_externals :fmt do |e|
e.url 'https://github.com/fmtlib/fmt/archive/7.0.3.zip'
e.map_dir 'include' => 'dev/fmt'
e.map_dir 'src' => 'dev/fmt'
e.map_dir 'support' => 'dev/fmt'
e.map_file 'CMakeLists.txt' => 'dev/fmt/*'
e.map_file 'README.rst' => 'dev/fmt/*'
e.map_file 'ChangeLog.rst' => 'dev/fmt/*'
end
MxxRu::arch_externals :fmtlib_mxxru do |e|
e.url 'https://github.com/Stiffstream/fmtlib_mxxru/archive/fmt-5.0.0-1.tar.gz'
e.map_dir 'dev/fmt_mxxru' => 'dev'
end