forked from Stiffstream/restinio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
externals.rb
89 lines (64 loc) · 2.62 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
78
79
80
81
82
83
84
85
86
87
88
MxxRu::arch_externals :so5 do |e|
USE_SO_5_5 = 'so-5.5'
if USE_SO_5_5 == ENV.fetch('RESTINIO_USE_LATEST_SO5', USE_SO_5_5)
e.url 'https://github.com/eao197/so-5-5/archive/v5.5.24.4.tar.gz'
e.map_dir 'dev/so_5' => 'dev'
e.map_dir 'dev/timertt' => 'dev'
else
e.url 'https://github.com/Stiffstream/sobjectizer/archive/v.5.7.4.1.tar.gz'
e.map_dir 'dev/so_5' => 'dev'
end
end
MxxRu::arch_externals :asio do |e|
# e.url 'https://github.com/chriskohlhoff/asio/archive/asio-1-18-0.tar.gz'
e.url 'https://github.com/chriskohlhoff/asio/archive/asio-1-21-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/9.1.0.zip'
# e.url 'https://github.com/fmtlib/fmt/archive/8.1.1.zip'
# e.url 'https://github.com/fmtlib/fmt/archive/7.1.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
MxxRu::arch_externals :rapidjson do |e|
e.url 'https://github.com/miloyip/rapidjson/archive/v1.1.0.zip'
e.map_dir 'include/rapidjson' => 'dev/rapidjson/include'
end
MxxRu::arch_externals :rapidjson_mxxru do |e|
e.url 'https://github.com/Stiffstream/rapidjson_mxxru/archive/v.1.0.1.tar.gz'
e.map_dir 'dev/rapidjson_mxxru' => 'dev'
end
MxxRu::arch_externals :json_dto do |e|
e.url 'https://github.com/Stiffstream/json_dto/archive/v.0.2.15.tar.gz'
e.map_dir 'dev/json_dto' => 'dev'
end
MxxRu::arch_externals :clara do |e|
e.url 'https://github.com/catchorg/Clara/archive/v1.1.5.tar.gz'
e.map_file 'single_include/clara.hpp' => 'dev/clara/*'
end
MxxRu::arch_externals :catch do |e|
e.url 'https://github.com/catchorg/Catch2/archive/v2.13.9.tar.gz'
e.map_dir 'single_include/catch2' => 'dev'
end