this repo has no description
1opam-version: "2.0"
2synopsis: "API to manipulate files (POSIX like) and filenames"
3maintainer: "Sylvain Le Gall <sylvain+ocaml@le-gall.net>"
4authors: "Sylvain Le Gall"
5license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
6homepage: "http://ocaml-fileutils.forge.ocamlcore.org/"
7bug-reports: "https://github.com/gildor478/ocaml-fileutils/issues"
8depends: [
9 "ocaml" {< "5.0"}
10 "base-unix"
11 "base-bytes"
12 "stdlib-shims"
13 "ocamlbuild" {build}
14 "ocamlfind" {build}
15 "ounit" {with-test & >= "2.0.0"}
16]
17build: [
18 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}]
19 ["ocaml" "setup.ml" "-build"]
20 ["ocaml" "setup.ml" "-doc"] {with-doc}
21 ["ocaml" "setup.ml" "-test"] {with-test}
22]
23install: ["ocaml" "setup.ml" "-install"]
24dev-repo: "git+https://github.com/gildor478/ocaml-fileutils.git"
25url {
26 src:
27 "https://github.com/gildor478/ocaml-fileutils/releases/download/v0.6.0/ocaml-fileutils-0.6.0.zip"
28 checksum: [
29 "md5=e7be073821779c52b74dcffa7edd456e"
30 "sha512=b6de447fa2c8bc2d2a465d5b9a0f6be4b63f10e491f52914fba32a178c48cd6bf162b52663b16f670fbe4f301c1bbcedba2b03088d89074c3c168c8668c6cc9d"
31 ]
32}