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.4/ocaml-dtools-0.3.4.tar.gz"
29 checksum: [
30 "sha256=d57d4ac2e13a4c79a7c10b733e7399e163670ab90b68857edeb2914fab1ac421"
31 "md5=6f4c0467f469b8a1e03f34d35309a0b4"
32 ]
33}