this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: "Easy file manipulation (read_file, write_file, etc.)" 4description: """\ 5This library provides some modules to read and write files, and create 6and scan directories. 7""" 8authors: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"] 9maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"] 10homepage: "https://ocamlpro.github.io/ez_file" 11doc: "https://ocamlpro.github.io/ez_file/sphinx" 12bug-reports: "https://github.com/ocamlpro/ez_file/issues" 13dev-repo: "git+https://github.com/ocamlpro/ez_file.git" 14tags: "org:ocamlpro" 15build: [ 16 ["dune" "subst"] {dev} 17 ["sh" "-c" "./scripts/before.sh build '%{name}%'"] 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29 ["sh" "-c" "./scripts/after.sh build '%{name}%'"] 30] 31install: [ 32 ["sh" "-c" "./scripts/before.sh install '%{name}%'"] 33] 34depends: [ 35 "ocaml" {>= "4.07.0"} 36 "dune" {>= "2.7.0"} 37 "re" {>= "1.8.0" & < "2.0.0"} 38 "ocplib_stuff" {>= "0.1.0" & < "1.0.0"} 39 "base-unix" {>= "base"} 40 "ppx_inline_test" {with-test} 41 "ppx_expect" {with-test} 42 "odoc" {with-doc} 43 "ocamlformat" {with-test} 44] 45 46url { 47 src: "https://github.com/ocamlpro/ez_file/archive/v0.3.0.tar.gz" 48 checksum: [ "sha256=e426f0853d613ce290003e4df93bdda93cb20be9b19ee57d59df0f92842310e9" ] 49}