forked from xapi-project/ocaml-xen-lowlevel-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxenctrl.opam
44 lines (44 loc) · 1.18 KB
/
xenctrl.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
opam-version: "2.0"
maintainer: "jonathan.ludlam@citrix.com"
authors: "xen-devel@lists.xen.org"
homepage: "http://www.xenproject.org/"
bug-reports: "xen-devel@lists.xen.org"
dev-repo: "git://github.com/xapi-project/ocaml-xen-lowlevel-libs"
tags: [
"org:mirage"
"org:xapi-project"
]
build: [
["./configure"]
[make]
]
install: [
[make "install" "BINDIR=%{bin}%"]
]
remove: [
["./configure"]
[make "uninstall"]
]
depends: [
"ocaml" {>= "4.00.0"}
"ocamlfind" {build}
"lwt" {with-test}
"cmdliner" {build}
"ocamlbuild"
]
depexts: [
["libxen-dev" "uuid-dev"] {os-distribution = "debian"}
["libxen-dev" "uuid-dev"] {os-distribution = "ubuntu"}
["xen-devel" "libuuid-devel"] {os-distribution = "centos"}
["xen-devel"] {os-distribution = "fedora"}
["xen-devel"] {os-distribution = "rhel"}
["xen-devel"] {os-distribution = "oraclelinux"}
["xen-dom0-libs-devel" "xen-libs-devel"] {os = "xenserver"}
["xen-dev"] {os-distribution = "alpine"}
]
synopsis:
"OCaml bindings for low-level xen management functions. All code developed here should be upstreamed to xen-unstable eventually."
url {
src:
"https://github.com/xapi-project/ocaml-xen-lowlevel-libs/archive/master.tar.gz"
}