forked from frenetic-lang/frenetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
42 lines (42 loc) · 950 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
opam-version: "1.2"
available: [ ocaml-version >= "4.03.0" ]
version: "4.0.0"
maintainer: "Arjun Guha <[email protected]>"
authors: "Arjun Guha <[email protected]>, Nate Foster <[email protected]>"
homepage: "http://frenetic-lang.org"
bug-reports: "https://github.com/frenetic-lang/frenetic/issues"
dev-repo: "https://github.com/frenetic-lang/frenetic.git"
build: [
["./configure" "--%{pa_ounit:enable}%-tests" "--prefix" prefix ]
[make]
]
install: [make "install"]
build-test: [
[make "test"]
]
remove: [
["ocamlfind" "remove" "frenetic"]
["ocamlfind" "remove" "openflow"]
]
depends: [
"ocamlfind" {build}
"oasis" {build}
"cppo" {build}
"menhir" {build}
"core"
"ppx_jane"
"ppx_import"
"ppx_deriving"
"sedlex"
"async"
"async_extended"
"cstruct" {>= "1.0.1"}
"ipaddr" {>= "2.5.0"}
"yojson" {>= "1.2.0"}
"base64" {>= "2.0.0"}
"cohttp"
"tcpip"
"mparser"
"ocamlgraph" {>= "1.8.7"}
"quickcheck"
]