this repo has no description
1opam-version: "2.0"
2maintainer: "rudi.grinberg@gmail.com"
3authors: "Rudi Grinberg"
4homepage: "https://github.com/rgrinberg/stringext"
5bug-reports: "https://github.com/rgrinberg/stringext/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/rgrinberg/stringext.git"
8build: [
9 ["ocaml" "setup.ml" "-configure"]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
12 ["ocaml" "setup.ml" "-build"] {with-test}
13 ["ocaml" "setup.ml" "-test"] {with-test}
14 ["ocaml" "setup.ml" "-doc"] {with-doc}
15]
16install: ["ocaml" "setup.ml" "-install"]
17
18remove: ["ocamlfind" "remove" "stringext"]
19
20depends: [
21 "ocaml" {>= "4.00.0" & < "5.0"}
22 "ocamlfind" {build}
23 "ocamlbuild" {build}
24 "ounit" {with-test}
25 "qcheck" {with-test & >= "0.4" & < "0.5"}
26 "base-bytes"
27]
28synopsis: "Extra string functions for OCaml"
29description: """
30Provides a single module named Stringext that provides a grab bag of often used
31but missing string functions from the stdlib. E.g, split, full_split, cut,
32rcut, etc."""
33flags: light-uninstall
34url {
35 src: "https://github.com/rgrinberg/stringext/archive/v1.4.1.tar.gz"
36 checksum: [
37 "sha256=abcecd6f8f207804b95ea87222ac263a37d76fb3a3fe0dfd6aaa7343585ef64c"
38 "md5=bea6bc6d3492883d4d69e92ab6ca0a01"
39 ]
40}