-
Notifications
You must be signed in to change notification settings - Fork 92
/
externals.rb
50 lines (38 loc) · 1.56 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
MxxRu::arch_externals :so5 do |e|
e.url 'https://github.com/Stiffstream/sobjectizer/archive/v.5.8.1.1.tar.gz'
e.map_dir 'dev/so_5' => 'dev'
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-28-2.tar.gz'
e.map_dir 'asio/include' => 'dev/asio'
end
MxxRu::arch_externals :llhttp do |e|
e.url 'https://github.com/nodejs/llhttp/archive/refs/tags/release/v9.1.3.tar.gz'
e.map_dir 'include' => 'dev/nodejs/llhttp'
e.map_dir 'src' => 'dev/nodejs/llhttp'
e.map_file 'CMakeLists.txt' => 'dev/nodejs/llhttp/*'
e.map_file 'libllhttp.pc.in' => 'dev/nodejs/llhttp/*'
end
MxxRu::arch_externals :fmt do |e|
e.url 'https://github.com/fmtlib/fmt/archive/10.1.1.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 :expected_lite do |e|
e.url 'https://github.com/martinmoene/expected-lite/archive/refs/tags/v0.6.3.tar.gz'
e.map_dir 'include' => 'dev/expected-lite'
e.map_dir 'cmake' => 'dev/expected-lite'
e.map_file 'CMakeLists.txt' => 'dev/expected-lite/*'
end
MxxRu::arch_externals :catch do |e|
e.url 'https://github.com/catchorg/Catch2/archive/refs/tags/v3.5.0.tar.gz'
e.map_dir 'src' => 'dev/catch2/'
e.map_dir 'CMake' => 'dev/catch2/'
e.map_dir 'extras' => 'dev/catch2/'
e.map_file 'CMakeLists.txt' => 'dev/catch2/*'
end