this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "David Scott" ]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-launchd"
6dev-repo: "git+https://github.com/mirage/ocaml-launchd.git"
7bug-reports: "https://github.com/mirage/ocaml-launchd/issues"
8
9build: [
10 [make "PREFIX=%{prefix}%"]
11 ["ocaml" "setup.ml" "-doc"] {with-doc}
12]
13install: [make "PREFIX=%{prefix}%" "install"]
14
15remove: [["ocamlfind" "remove" "launchd"]]
16
17depends: [
18 "ocaml"
19 "result"
20 "lwt" {>= "2.4.3"}
21 "cstruct" {>= "0.7.0"}
22 "ocamlfind" {build}
23 "ocamlbuild" {build}
24]
25available: os = "macos"
26synopsis: "Bindings for the launchd socket activation API"
27description: """
28Launchd on OS X takes care of binding and listening on sockets for you
29and can launch your program on demand. The API bindings are needed to
30receive the listening sockets from launchd."""
31flags: light-uninstall
32url {
33 src: "https://github.com/mirage/ocaml-launchd/archive/v1.2.tar.gz"
34 checksum: [
35 "sha256=d05b0e605968341b06e516ccaf6b7018701a2aef93400845c9f5d1a33164d5f1"
36 "md5=abf6eb7d8d44211dd64c5a632b78c336"
37 ]
38}