this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "David Scott" ]
4license: "ISC"
5homepage: "https://github.com/djs55/ocaml-launchd"
6dev-repo: "git+https://github.com/djs55/ocaml-launchd.git"
7bug-reports: "https://github.com/djs55/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"
21 "cstruct"
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/djs55/ocaml-launchd/archive/v1.0.tar.gz"
34 checksum: [
35 "sha256=b61df02efd2df37b578fe0fc28de2f4ba31930fb1d9122477317fe815bf7d863"
36 "md5=1cc24c1bdb5b11c9c8d254ad46669cc3"
37 ]
38}