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" "--prefix" prefix "--enable-tests" {with-test}]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-test"] {with-test}
12 ["ocaml" "setup.ml" "-doc"] {with-doc}
13]
14install: ["ocaml" "setup.ml" "-install"]
15
16remove: ["ocamlfind" "remove" "stringext"]
17
18depends: [
19 "ocaml" {>= "4.00.0" & < "5.0"}
20 "ocamlfind" {build}
21 "base-bytes"
22 "ocamlbuild" {build}
23 "ounit" {with-test}
24]
25synopsis: "Extra string functions for OCaml"
26description: """
27Provides a single module named Stringext that provides a grab bug of often used
28but missing string functions from the stdlib. E.g, split, full_split, cut,
29rcut, etc."""
30flags: light-uninstall
31url {
32 src: "https://github.com/rgrinberg/stringext/archive/v1.3.0.tar.gz"
33 checksum: [
34 "sha256=dcdb1e853d974fd68a44922ed4952523c5cd6e596576d5486fb2b51b585c50c0"
35 "md5=fe7a32524a90cf9ca89c700f75fc907b"
36 ]
37}