forked from mirage/mirage-tcpip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
64 lines (62 loc) · 1.29 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
opam-version: "1.2"
maintainer: "[email protected]"
homepage: "https://github.com/mirage/mirage-tcpip"
dev-repo: "https://github.com/mirage/mirage-tcpip.git"
bug-reports: "https://github.com/mirage/mirage-tcpip/issues"
authors: [
"Anil Madhavapeddy"
"Balraj Singh"
"Richard Mortier"
"Nicolas Ojeda Bar"
"Thomas Gazagnaire"
"Vincent Bernardoff"
"Magnus Skjegstad"
"Mindy Preston"
"Thomas Leonard"
"David Scott"
"Gabor Pali"
"Hannes Mehnert"
"Haris Rotsos"
"Kia"
"Luke Dunstan"
"Pablo Polvorin"
"Tim Cuthbertson"
"lnmx"
"pqwy"
]
license: "ISC"
tags: ["org:mirage"]
build: [
["./configure" "--prefix" prefix
"--%{mirage-xen:enable}%-xen" ]
[make]
]
build-test: [
["./configure" "--enable-tests"]
[make "test" "TESTFLAGS=-v"]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "tcpip"]
depends: [
"ocamlfind" {build}
"result"
"rresult"
"cstruct" {>= "2.1.0"}
"ppx_tools" {build}
"mirage-types" {>= "2.8.0"}
"mirage-clock-unix" {test & >= "1.0.0"}
"ipaddr" {>= "2.2.0"}
"mirage-profile" {>= "0.5"}
"mirage-flow" {test}
"mirage-vnetif" {test & >= "0.2.0"}
"alcotest" {test}
"pcap-format" {test}
"fmt" {test}
"lwt" {>= "2.4.7"}
"logs" {>= "0.6.0"}
"duration"
]
depopts: [
"mirage-xen"
]
available: [ocaml-version >= "4.02.3"]