this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Beauxis <toots@rastageeks.org>" 3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 4homepage: "https://github.com/savonet/ocaml-dtools" 5build: [ 6 ["./configure" "--prefix" prefix] 7 [make] 8] 9install: [ 10 [make "install"] 11] 12remove: ["ocamlfind" "remove" "dtools"] 13depends: ["ocaml" {< "5.0.0"} "ocamlfind"] 14bug-reports: "https://github.com/savonet/ocaml-dtools/issues" 15dev-repo: "git+https://github.com/savonet/ocaml-dtools.git" 16synopsis: "Library providing various helper functions to make daemons" 17description: """ 18A set of useful functions for writing daemon services in OCaml. 19 20It includes support for: 21 * configuration options 22 * logging 23 * detaching and writing PID file 24 * start-up and shutdown task manager""" 25flags: light-uninstall 26url { 27 src: 28 "https://github.com/savonet/ocaml-dtools/releases/download/0.3.2/ocaml-dtools-0.3.2.tar.gz" 29 checksum: [ 30 "sha256=af82770c621e8cdc0ce8d8a7141028c9c1cdd081837412961004880c9037871a" 31 "md5=804d89075e50f4db71cbd7d6f3c100e1" 32 ] 33}