-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
58 lines (56 loc) · 1.39 KB
/
dune
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
(rule
(target btree.ml)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target database.ml)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target dbdisk.mli)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target dutil.ml)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target iovalue.ml)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target outbase.ml)
(action (run curl -LJO https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/%{target}))
)
(rule
(target gwdb_driver_legacy.ml)
(action (run curl -L https://raw.githubusercontent.com/geneweb/geneweb/master/lib/gwdb-legacy/gwdb_driver.ml -o %{target}))
)
(env ( _ (flags (:standard -w +a-4-9-48)) ) )
(library
(name gwdb_legacy_x_arangodb)
(libraries
curl
geneweb
geneweb.def
geneweb.util
jsonaf
syslog
yojson
)
(modules_without_implementation dbdisk)
(modules
btree
database
dbdisk
dutil
gwdb_driver
gwdb_driver_arango
gwdb_driver_env
gwdb_driver_legacy
http_curl
json
json_jsonaf
outbase
)
)