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.2.tar.gz" 36 checksum: [ 37 "sha256=1f0c108785ab4d80650748779fea38837a80fcf89f2b1ce9ccbbcc300134fdec" 38 "md5=38385cf57849c8dd0bdd0c8b08f120e7" 39 ] 40}