-
Notifications
You must be signed in to change notification settings - Fork 2
/
opam
24 lines (24 loc) · 786 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
opam-version: "1.2"
maintainer: "nv-vn <[email protected]>"
authors: "nv-vn <[email protected]>"
homepage: "https://github.com/nv-vn/opam-create"
bug-reports: "https://github.com/nv-vn/opam-create/issues"
license: "GPL"
dev-repo: "https://github.com/nv-vn/opam-create.git"
build: [
["./configure" "--prefix=%{prefix}%"]
[make]
]
install: ["cp" "./main.native" "~/.opam/$(opam switch show)/bin/opam-create"]
remove: ["rm" "~/.opam/$(opam switch show)/bin/opam-create"]
depends: [
"ocamlfind" {build}
"oasis" {build}
"batteries" {>= "2.0.0" & < "3.0.0"}
"linenoise" {>= "0.9.0" & < "1.0.0"}
"ocaml-inifiles" {>= "1.2" & < "2.0"}
"yojson" {>= "1.3.0" & < "2.0.0"}
"ppx_blob" {>= "1.5.0" & < "2.0.0"}
"ppx_deriving" {>= "3.0" & < "4.0"}
"ppx_deriving_yojson" {>= "2.4" & < "3.0"}
]