this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://github.com/ygrek/ocaml-extlib" 4dev-repo: "git+https://github.com/ygrek/ocaml-extlib.git" 5bug-reports: "https://github.com/ygrek/ocaml-extlib/issues" 6doc: ["https://ygrek.org/p/extlib/doc/"] 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8authors: [ 9 "Nicolas Cannasse" 10 "Brian Hurt" 11 "Yamagata Yoriyuki" 12 "Markus Mottl" 13 "Jesse Guardiani" 14 "John Skaller" 15 "Bardur Arantsson" 16 "Janne Hellsten" 17 "Richard W.M. Jones" 18 "ygrek" 19 "Gabriel Scherer" 20 "Pietro Abate" 21] 22build: [ 23 [make "minimal=1" "build"] 24 [make "minimal=1" "test"] {with-test} 25 [make "minimal=1" "doc"] {with-doc} 26] 27install: [ [make "minimal=1" "install"] ] 28remove: [ 29 ["ocamlfind" "remove" "extlib"] 30] 31depends: [ 32 "ocaml" {< "4.12.0"} 33 "ocamlfind" {build} 34 "cppo" {build} 35 "base-bytes" {build} 36] 37synopsis: 38 "A complete yet small extension for OCaml standard library (reduced, recommended)" 39description: """ 40The purpose of this library is to add new functions to OCaml standard library 41modules, to modify some functions in order to get better performances or 42safety (tail-recursive) and also to provide new modules which should be useful 43for day to day programming.""" 44flags: light-uninstall 45url { 46 src: "https://ygrek.org/p/release/ocaml-extlib/extlib-1.7.5.tar.gz" 47 checksum: [ 48 "sha256=9a3430a6cd72ca8b0ab052907440c5c235632b8f2f102ee0cd19c8b68ac354a7" 49 "md5=d989951536077563bf4c5e3479c3866f" 50 ] 51 mirrors: 52 "https://github.com/ygrek/ocaml-extlib/releases/download/1.7.5/extlib-1.7.5.tar.gz" 53}