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