-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathexternals.rb
52 lines (40 loc) · 1.65 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
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-32-0.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.2.1.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/11.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.md' => 'dev/fmt/*'
e.map_file 'ChangeLog.md' => 'dev/fmt/*'
end
MxxRu::arch_externals :expected_lite do |e|
e.url 'https://github.com/martinmoene/expected-lite/archive/refs/tags/v0.8.0.tar.gz'
e.map_dir 'include' => 'dev/expected-lite'
e.map_dir 'cmake' => 'dev/expected-lite'
e.map_file 'CMakeLists.txt' => 'dev/expected-lite/*'
e.map_file 'LICENSE.txt' => 'dev/expected-lite/*'
e.map_file 'README.md' => 'dev/expected-lite/*'
end
MxxRu::arch_externals :catch do |e|
e.url 'https://github.com/catchorg/Catch2/archive/refs/tags/v3.7.1.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