this repo has no description
1opam-version: "2.0"
2maintainer: "rudi.grinberg@gmail.com"
3authors: ["Rudi Grinberg"]
4license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
5
6homepage: "https://github.com/rgrinberg/humane-re"
7bug-reports: "https://github.com/rgrinberg/humane-re/issues"
8dev-repo: "git+https://github.com/rgrinberg/humane-re.git"
9build: [
10 [make "configure-no-tests"]
11 [make "build"]
12]
13
14install: [make "install"]
15
16remove: [
17 ["ocamlfind" "remove" "humane_re"]
18]
19
20depends: [
21 "ocaml" {>= "4.02.0"}
22 "ocamlfind" {build}
23 "oasis" {build}
24 "re"
25 "ocamlbuild" {build}
26]
27synopsis: "A human friendly interface to regular expressions in OCaml"
28description: """
29Humane-re attempts to provide a more convenient regex API on top of re. The
30main goal of this library is to make common tasks involving regexes as painless
31as possible."""
32flags: light-uninstall
33url {
34 src: "https://github.com/rgrinberg/humane-re/archive/v0.1.1.tar.gz"
35 checksum: [
36 "sha256=932eef8035864738cfe32549c6622fa6793824bddcf54a45f96d4f4dc8640a9c"
37 "md5=3babb6e4980cb8e0228451f869828ad5"
38 ]
39}