-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternals.rb
54 lines (40 loc) · 1.59 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
MxxRu::arch_externals :so5 do |e|
e.url 'https://sourceforge.net/projects/sobjectizer/files/sobjectizer/SObjectizer%20Core%20v.5.5/so-5.5.22.1.zip'
e.map_dir 'dev/so_5' => 'dev'
e.map_dir 'dev/timertt' => 'dev'
end
MxxRu::arch_externals :restinio do |e|
e.url 'https://bitbucket.org/sobjectizerteam/restinio-0.4/downloads/restinio-0.4.7-full.tar.bz2'
# RESTinio and its dependencies.
e.map_dir 'dev/asio' => 'dev'
e.map_dir 'dev/asio_mxxru' => 'dev'
# Use fmt of version 4.1.0 as spd log doesn't support 5.0.0 for now.
# e.map_dir 'dev/fmt' => 'dev'
# e.map_dir 'dev/fmt_mxxru' => 'dev'
e.map_dir 'dev/nodejs' => 'dev'
e.map_dir 'dev/restinio' => 'dev'
end
MxxRu::arch_externals :fmt do |e|
e.url 'https://github.com/fmtlib/fmt/archive/5.1.0.zip'
e.map_dir 'include' => 'dev/fmt'
end
MxxRu::arch_externals :fmtlib_mxxru do |e|
e.url 'https://bitbucket.org/sobjectizerteam/fmtlib_mxxru/get/fmt-5.0.0.tar.bz2'
e.map_dir 'dev/fmt_mxxru' => 'dev'
end
MxxRu::arch_externals :spdlog do |e|
e.url 'https://github.com/gabime/spdlog/archive/v1.0.0.zip'
e.map_dir 'include' => 'dev/spdlog'
end
MxxRu::arch_externals :spdlog_mxxru do |e|
e.url 'https://bitbucket.org/sobjectizerteam/spdlog_mxxru-1.2/get/v.1.2.0.tar.bz2'
e.map_dir 'dev/spdlog_mxxru' => 'dev'
end
MxxRu::arch_externals :clara do |e|
e.url 'https://github.com/catchorg/Clara/archive/v1.1.4.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.1.0.zip'
e.map_file 'single_include/catch.hpp' => 'dev/catch/*'
end