this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "PPX for matching S-Expressions" 4description: """ 5'PPX-Camlrack' provides an augmented match expression that 6transforms written S-Expressions into their Camlrack-compatible types. This 7allows for easily working with S-Expressions without extra typing.""" 8maintainer: ["Pierce Darragh <pierce.darragh@gmail.com>"] 9authors: ["Pierce Darragh <pierce.darragh@gmail.com>"] 10license: "MIT" 11tags: ["S-Expressions" "parsing" "matching" "ppx" "extension"] 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 "ppxlib" {>= "0.23.0" & < "0.36.0"} 20 "camlrack" {= version} 21 "odoc" {with-doc} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "--promote-install-files=false" 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37 ["dune" "install" "-p" name "--create-install-files" name] 38] 39dev-repo: "git+https://github.com/pdarragh/camlrack.git" 40url { 41 src: "https://github.com/pdarragh/camlrack/archive/0.10.1.tar.gz" 42 checksum: [ 43 "md5=d888192782217ac5eb0933f07f0706d3" 44 "sha512=9dd2e7247afa9017feefcd97e4dc73869f10d84f267caa9f2ddfa913bd5257ce1139200faf6aa26c588d4bbf6e178f8c95f85b9ec9192d0145cdbfc664c17b60" 45 ] 46}