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.3/ocaml-dtools-0.3.3.tar.gz"
29 checksum: [
30 "sha256=f278238af96a51339f66c483f36f5613fa1f66fefa0561b36db1e7248bf41422"
31 "md5=ca5df5709d6298315689c8b0c2bdb2a1"
32 ]
33}