opam-version: "2.0"

synopsis: "Camlp5 syntax extension for logging"
description: """
A simple camlp5 syntax extension that allows syntax
   REPR(expr)
which translates to a pair
   ("string with expression 'expr'", expr)

Useful for logging and pretty-printing
"""

maintainer: "kakadu.hafanana@gmail.com"
authors: "https://github.com/dboulytchev"
homepage: "https://github.com/dboulytchev/logger"
bug-reports: "https://github.com/dboulytchev/logger/issues"

depends: [
  "ocaml" { >= "4.07.0" }
  "ocamlfind" {build}
  "camlp5"
]
build: [
  [make "-f" "Makefile.ob"]
#  [make "-f" "Makefile.ob" "test"] {with-test}
]
install: [make "-f" "Makefile.ob" "PREFIX=%{prefix}%" "install"]

dev-repo: "git+https://github.com/dboulytchev/logger.git"
url {
  src: "https://github.com/dboulytchev/logger/archive/0.4.2.zip"
  checksum: "md5=c90651c5b421cef0d358684e4cb1eb6d"
}

