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" { >= "8" | = "8.00~alpha04" | = "8.00~alpha05" } 22] 23build: [ 24 [make "-f" "Makefile.ob"] 25] 26install: [make "-f" "Makefile.ob" "PREFIX=%{prefix}%" "install"] 27 28dev-repo: "git+https://github.com/dboulytchev/logger.git" 29url { 30 src: "https://github.com/dboulytchev/logger/archive/0.4.5.zip" 31 checksum: [ 32 "sha256=525c04ab8c5bf1a0bb93c6e1c1b32628d8d6983ab3e8eef4ade8622f5391dbb8" 33 "md5=cf67fa77095b0d2ed42c688bfdc5ae50" 34 ] 35}