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.2.zip" 32 checksum: [ 33 "sha256=87e4a98956ef0a6e50eaac01ffdbcde1145aa090c1506711759ca804203b3199" 34 "md5=c90651c5b421cef0d358684e4cb1eb6d" 35 ] 36} 37