-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
50 lines (48 loc) · 1.11 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
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"
]
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}
"cstruct" {>= "1.6.0"}
"channel"
"mirage-types" {>= "2.6.0"}
"mirage-unix" {>= "1.1.0"}
"mirage-console"
"mirage-clock-unix" {>= "1.0.0"}
"mirage-net-unix" {>= "1.1.0"}
"ipaddr" {>= "2.2.0"}
"mirage-profile" {>= "0.5"}
"mirage-flow" {test}
"mirage-vnetif" {test}
"alcotest" {test}
"pcap-format" {test}
"lwt" {>= "2.4.7"}
]
depopts: [
"mirage-xen"
]
available: [ocaml-version >= "4.01.0"]