this repo has no description
1opam-version: "2.0" 2 3synopsis: "Camlp5 syntax extension for logging" 4description: """ 5A simple camlp5 syntax extension that allows syntax 6 REPR(expr) 7which translates to a pair 8 ("string with expression 'expr'", expr) 9 10Useful for logging and pretty-printing 11""" 12 13maintainer: "kakadu.hafanana@gmail.com" 14authors: "https://github.com/dboulytchev" 15homepage: "https://github.com/dboulytchev/logger" 16bug-reports: "https://github.com/dboulytchev/logger/issues" 17 18depends: [ 19 "ocaml" { >= "4.07.0" } 20 "ocamlfind" {build} 21 "camlp5" 22] 23build: [ 24 [make "-f" "Makefile.ob"] 25# [make "-f" "Makefile.ob" "test"] {with-test} 26] 27install: [make "-f" "Makefile.ob" "PREFIX=%{prefix}%" "install"] 28 29dev-repo: "git+https://github.com/dboulytchev/logger.git" 30url { 31 src: "https://github.com/dboulytchev/logger/archive/0.4.3.zip" 32 checksum: [ 33 "sha256=fb9cea664da7917634324028f614c6637808e99334713350fca0c7722bfae51f" 34 "md5=7d1d5d1b6661db95fe7ee6bf9a9c6ba4" 35 ] 36} 37