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" 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/mirage/ocaml-launchd/archive/v1.1.tar.gz" 34 checksum: [ 35 "sha256=c381eea67cfc515f892cebec1e5fa56ecf2cc983317f4790cbfb81e537766ae6" 36 "md5=892493ce4a6570fd4a221bd8e8115efa" 37 ] 38}