this repo has no description
1opam-version: "2.0"
2maintainer: "simon.beaumont@citrix.com"
3homepage: "https://github.com/simonjbeaumont/ocaml-sanlock"
4bug-reports: "https://github.com/simonjbeaumont/ocaml-sanlock/issues"
5dev-repo: "git+https://github.com/simonjbeaumont/ocaml-sanlock.git"
6build: [
7 ["./configure"]
8 [make]
9]
10install: [make "install"]
11remove: [
12 ["ocamlfind" "remove" "sanlock"]
13 ["ocamlfind" "remove" "sanlock_bindings"]
14]
15depends: [
16 "ocaml" {>= "4.01.0" & < "4.13"}
17 "ctypes" {>= "0.4"}
18 "oasis" {build}
19 "ocamlfind" {build}
20]
21available: os = "linux"
22depexts: [
23 ["libsanlock-dev"] {os-family = "debian"}
24 ["sanlock-devel"] {os-distribution = "centos"}
25]
26post-messages: [
27 "This package requires libsanlock-dev to be installed on your system" {failure & (os = "debian")}
28 "This package requires libsanlock-dev to be installed on your system" {failure & (os = "ubuntu")}
29 "This package requires sanlock-devel to be installed on your system" {failure & (os = "centos")}
30]
31synopsis: "Ctypes bindings to libsanlock for OCaml"
32authors: "Si Beaumont"
33flags: light-uninstall
34url {
35 src:
36 "https://github.com/simonjbeaumont/ocaml-sanlock/archive/v0.0.9/ocaml-sanlock-v0.0.9.tar.gz"
37 checksum: [
38 "sha256=575e58dd20f865856a8a034cffcdd599ed115eb1056907e94faef8a778a2cff9"
39 "md5=712d5707256ac339bb2abb9f5b5f6eaf"
40 ]
41}