this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "S-Expression parsing for OCaml"
4description: """
5'Camlrack' provides the ability to parse strings into
6S-Expressions and vice versa. It is intended to be simple and minimal, yet
7fully-featured."""
8maintainer: ["Pierce Darragh <pierce.darragh@gmail.com>"]
9authors: ["Pierce Darragh <pierce.darragh@gmail.com>"]
10license: "MIT"
11tags: ["S-Expressions" "parsing"]
12homepage: "https://github.com/pdarragh/camlrack"
13doc: "https://github.com/pdarragh/camlrack"
14bug-reports: "https://github.com/pdarragh/camlrack/issues"
15depends: [
16 "dune" {>= "2.9"}
17 "ocaml" {>= "4.12"}
18 "ounit2" {with-test & >= "2.2.5"}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "--promote-install-files=false"
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35 ["dune" "install" "-p" name "--create-install-files" name]
36]
37dev-repo: "git+https://github.com/pdarragh/camlrack.git"
38url {
39 src: "https://github.com/pdarragh/camlrack/archive/0.10.1.tar.gz"
40 checksum: [
41 "md5=d888192782217ac5eb0933f07f0706d3"
42 "sha512=9dd2e7247afa9017feefcd97e4dc73869f10d84f267caa9f2ddfa913bd5257ce1139200faf6aa26c588d4bbf6e178f8c95f85b9ec9192d0145cdbfc664c17b60"
43 ]
44}