-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopam
36 lines (36 loc) · 887 Bytes
/
opam
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
opam-version: "1.2"
name: "trakeva"
version: "0.0.0"
maintainer: "Sebastien Mondet <[email protected]>"
authors: [ "Sebastien Mondet <[email protected]>" ]
license: "Apache-2.0"
homepage: "http://seb.mondet.org/software/trakeva/index.html"
bug-reports: "https://github.com/smondet/trakeva/issues"
dev-repo: "https://github.com/smondet/trakeva.git"
build: [
["./configure"
"--%{sqlite3:enable}%-sqlite"
"--%{postgresql:enable}%-postgresql"
"--disable-test"
prefix]
["ocaml" "setup.ml" "-build"]
]
install: ["ocaml" "setup.ml" "-install"]
remove: [
["ocamlfind" "remove" "trakeva"]
["ocamlfind" "remove" "trakeva_sqlite"]
["ocamlfind" "remove" "trakeva_postgresql"]
["ocamlfind" "remove" "trakeva_of_uri"]
]
depends: [
"base-threads"
"nonstd"
"oasis" {build & >= "0.4"}
"ocamlfind" {build}
"pvem_lwt_unix"
"uri"
]
depopts: [
"postgresql"
"sqlite3"
]