this repo has no description
1opam-version: "2.0" 2maintainer: "Jochen Bartl <jochenbartl@mailbox.org>" 3authors: "Jochen Bartl <jochenbartl@mailbox.org>" 4homepage: "https://github.com/verbosemode/syslog-message" 5bug-reports: "https://github.com/verbosemode/syslog-message/issues" 6license: "BSD-2-Clause-FreeBSD" 7dev-repo: "git+https://github.com/verbosemode/syslog-message.git" 8build: [ 9 ["oasis" "setup"] 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["oasis" "setup"] {with-test} 13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 14 ["ocaml" "setup.ml" "-build"] {with-test} 15 ["ocaml" "setup.ml" "-test"] {with-test} 16] 17install: ["ocaml" "setup.ml" "-install"] 18remove: ["ocamlfind" "remove" "syslog-message"] 19depends: [ 20 "ocaml" {>= "4.02.3"} 21 "astring" 22 "oasis" {build & >= "0.4"} 23 "ocamlfind" {build} 24 "ptime" 25 "qcheck" {with-test & < "0.5"} 26] 27synopsis: "Syslog Message Parser" 28description: 29 "This is a library for parsing and generating RFC 3164 compatible Syslog messages." 30flags: light-uninstall 31url { 32 src: "https://github.com/verbosemode/syslog-message/archive/0.0.1.tar.gz" 33 checksum: [ 34 "sha256=79ba77a24b4640453a39990e6b88e2806fc810c153e9068c0bd8fa5f660a1469" 35 "md5=23646fb9778c9f46eef1a0d00799d8f5" 36 ] 37}