-
Notifications
You must be signed in to change notification settings - Fork 1
/
externals.rb
78 lines (56 loc) · 2.21 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
MxxRu::arch_externals :args do |e|
e.url 'https://github.com/Taywee/args/archive/78e27faf75ff7d20f232f11ffcef65cde43c449d.tar.gz'
e.map_file 'args.hxx' => 'args/*'
end
MxxRu::arch_externals :asio do |e|
e.url 'https://github.com/chriskohlhoff/asio/archive/asio-1-22-1.tar.gz'
e.map_dir 'asio/include' => 'asio'
end
MxxRu::arch_externals :spdlog do |e|
e.url 'https://github.com/gabime/spdlog/archive/v1.10.0.tar.gz'
e.map_dir 'include/spdlog' => 'spdlog/include'
e.map_dir 'src' => 'spdlog'
end
MxxRu::arch_externals :fmt do |e|
e.url 'https://github.com/fmtlib/fmt/archive/9.1.0.tar.gz'
e.map_dir 'include' => 'fmt'
e.map_dir 'src' => 'fmt'
e.map_dir 'support' => 'fmt'
e.map_file 'CMakeLists.txt' => 'fmt/*'
e.map_file 'README.rst' => 'fmt/*'
e.map_file 'ChangeLog.rst' => 'fmt/*'
end
MxxRu::arch_externals :so5 do |e|
e.url 'https://github.com/Stiffstream/sobjectizer/archive/v.5.7.4.2.tar.gz'
e.map_dir 'dev/so_5' => './'
end
MxxRu::arch_externals :so5extra do |e|
e.url 'https://github.com/Stiffstream/so5extra/archive/v.1.5.2.tar.gz'
e.map_dir 'dev/so_5_extra' => './'
end
MxxRu::arch_externals :noexcept_ctcheck do |e|
e.url 'https://github.com/Stiffstream/noexcept-ctcheck/archive/v.1.0.0.tar.gz'
e.map_dir 'noexcept_ctcheck' => './'
end
MxxRu::arch_externals :restinio do |e|
e.url 'https://github.com/Stiffstream/restinio/archive/v.0.6.17.tar.gz'
e.map_dir 'dev/restinio' => './'
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' => 'nodejs/http_parser/*'
e.map_file 'http_parser.c' => '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' => 'nodejs'
end
MxxRu::arch_externals :doctest do |e|
e.url 'https://github.com/onqtam/doctest/archive/2.4.4.tar.gz'
e.map_file 'doctest/doctest.h' => 'doctest/*'
end
MxxRu::arch_externals :oess_2 do |e|
e.url 'https://sourceforge.net/projects/sobjectizer/files/oess/oess-2/oess-2.2.3.1-full.tar.bz2'
e.map_dir 'dev/cpp_util_2' => './'
e.map_dir 'dev/oess_2' => './'
end