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.1/ocaml-dtools-0.4.1.tar.gz"
32 checksum: [
33 "sha256=99ee13ec2aee1609dff452c18f85444f8dbb047f7504e35736b73bb0e77ad050"
34 "md5=f211ec4634755271b80bf5d71091f21c"
35 ]
36}