this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "Anil Madhavapeddy" "Dave Scott" "Richard Mortier" ]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-pcap"
6dev-repo: "git+https://github.com/mirage/ocaml-pcap.git"
7bug-reports: "https://github.com/mirage/ocaml-pcap/issues"
8tags: [
9 "org:mirage"
10 "org:xapi-project"
11]
12build: [
13 ["./configure" "--prefix" prefix]
14 [make]
15]
16install: [
17 [make "install"]
18]
19remove: [["ocamlfind" "remove" "pcap-format"]]
20depends: [
21 "ocaml"
22 "ocamlfind" {build}
23 "cstruct" {>= "1.9.0" & <"3.4.0"}
24 "ppx_cstruct" {<"3.4.0"}
25 "lwt" {with-test & >= "2.4.0"}
26 "ipaddr"
27 "ocamlbuild" {build}
28]
29depopts: ["mirage-net"]
30conflicts: [
31 "mirage-net-socket"
32 "mirage-net" {>= "1.0.0"}
33 "mirage" {< "0.9.2"}
34]
35synopsis: "read and write pcap-formatted network packet traces"
36flags: light-uninstall
37url {
38 src: "https://github.com/mirage/ocaml-pcap/archive/v0.4.0.tar.gz"
39 checksum: [
40 "sha256=abf4cd0da26ae70de26c7b395d53b1983ab4c9ab7f81322a1df56c039a373e6a"
41 "md5=1ae8cfea340a6ae81aaaf314c7a96523"
42 ]
43}