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: [ 14 "ocaml" {< "5.0.0"} 15 "ocamlfind" {build} 16] 17bug-reports: "https://github.com/savonet/ocaml-dtools/issues" 18dev-repo: "git+https://github.com/savonet/ocaml-dtools.git" 19synopsis: "Library providing various helper functions to make daemons" 20description: """ 21A set of useful functions for writing daemon services in OCaml. 22 23It includes support for: 24 * configuration options 25 * logging 26 * detaching and writing PID file 27 * start-up and shutdown task manager""" 28flags: light-uninstall 29url { 30 src: 31 "https://github.com/savonet/ocaml-dtools/releases/download/0.4.0/ocaml-dtools-0.4.0.tar.gz" 32 checksum: [ 33 "sha256=475c15b1da08a28f1f4ec7b0da4d0fc7fef5d126f14545d6c019dcee76448609" 34 "md5=2d351fbf5a4f5aef4963221c20ca5b00" 35 ] 36}