-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathopam
51 lines (41 loc) · 982 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
opam-version: "1.2"
name: "nanomsg"
version: "1.1"
maintainer: "Vincent Bernardoff <[email protected]>"
authors: [
"Vincent Bernardoff <[email protected]>"
"Rudi Grinberg <[email protected]>"
]
homepage: "http://github.com/rgringberg/onanomsg"
bug-reports: "http://github.com/rgrinberg/onanomsg/issues"
dev-repo: "git://github.com/rgrinberg/onanomsg"
license: "WTFPL"
build: [
["oasis" "setup"]
["./configure" "--%{lwt:enable}%-lwt" "--%{async:enable}%-async"]
[make]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "nanomsg"]
build-test: [
["oasis" "setup"]
["./configure" "--enable-tests"
"--%{lwt:enable}%-lwt"
"--%{async:enable}%-async"]
[make]
]
depends: [
"conf-nanomsg"
"ocamlfind" {build}
"ocamlbuild" {build}
"oasis" {build}
"ctypes" {>= "0.3"}
"ctypes-foreign"
"result"
"ipaddr" {>= "3.0.0"}
"ppx_deriving"
"bigstring"
"ounit" {test}
]
depopts: ["lwt" "async"]
available: [ocaml-version >= "4.02.0"]