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 "qtest" {with-test & >= "2.2"} 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.3.tar.gz" 36 checksum: [ 37 "sha256=d0695d0d97663f3e841f0b01ecfbe463018ba307118604914b71c601aca3e6a5" 38 "md5=ab9796add8e391b5a405ef392de1c5d3" 39 ] 40}