this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: "Basic stuff used by some OCP libraries and tools" 4description: """\ 5This library contains some basic stuff that is used in some OCP libraries 6and applications. Most of them are probably available in other extensions 7of the standard libraries (extlib, core, etc.), but we are used to these 8ones. 9""" 10authors: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"] 11maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"] 12homepage: "https://ocamlpro.github.io/ocplib_stuff" 13doc: "https://ocamlpro.github.io/ocplib_stuff/sphinx" 14bug-reports: "https://github.com/ocamlpro/ocplib_stuff/issues" 15dev-repo: "git+https://github.com/ocamlpro/ocplib_stuff.git" 16tags: "org:ocamlpro" 17build: [ 18 ["dune" "subst"] {dev} 19 ["sh" "-c" "./scripts/before.sh build '%{name}%'"] 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31 ["sh" "-c" "./scripts/after.sh build '%{name}%'"] 32] 33install: [ 34 ["sh" "-c" "./scripts/before.sh install '%{name}%'"] 35] 36depends: [ 37 "ocaml" {>= "4.07.0"} 38 "dune" {>= "2.7.0"} 39 "ppx_inline_test" {with-test} 40 "ppx_expect" {with-test} 41 "odoc" {with-doc} 42 "ocamlformat" {with-test} 43 "dune" {>= "2.6.0"} 44] 45 46url { 47 src: "https://github.com/ocamlpro/ocplib_stuff/archive/v0.4.0.tar.gz" 48 checksum: [ "sha256=471c5b3aee72923ed69b0f1a9577d053fd89b96c8711c2674367026037a96aab" ] 49}