this repo has no description
1opam-version: "2.0" 2maintainer: "Juergen Hoetzel <juergen@archlinux.org>" 3authors: "Juergen Hoetzel <juergen@archlinux.org>" 4homepage: "https://github.com/juergenhoetzel/ocaml-systemd/" 5bug-reports: "https://github.com/juergenhoetzel/ocaml-systemd/issues" 6dev-repo: "git+https://github.com/juergenhoetzel/ocaml-systemd.git" 7license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 [make "all"] 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "systemd"] 14depends: [ 15 "ocaml" {< "5.0.0"} 16 "ocamlbuild" {build} 17 "ocamlfind" {build} 18] 19depexts: [ 20 ["libsystemd-dev"] {os-family = "debian"} 21 ["systemd-devel"] {os-distribution = "centos"} 22 ["systemd-devel"] {os-distribution = "fedora"} 23] 24synopsis: "OCaml module for native access to the systemd facilities" 25description: """ 26* Logging to the Journal 27* Socket activation 28* Watchdog 29* Notifications""" 30flags: light-uninstall 31url { 32 src: "https://github.com/juergenhoetzel/ocaml-systemd/archive/1.2.tar.gz" 33 checksum: [ 34 "sha256=afd43edb570b07827e9d3edc8509019917993d893446e37891dd917bfde85b3b" 35 "md5=f9206f1284addca555934100b1e68928" 36 ] 37}