this repo has no description
1opam-version: "2.0"
2maintainer: "Sylvain Le Gall <sylvain+ocaml@le-gall.net>"
3authors: [ "Sylvain Le Gall" ]
4homepage: "http://ocaml-fileutils.forge.ocamlcore.org/"
5license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
6dev-repo: "git+https://github.com/gildor478/ocaml-fileutils.git"
7bug-reports: "https://github.com/gildor478/ocaml-fileutils/issues"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-doc"] {with-doc}
12]
13install: ["ocaml" "setup.ml" "-install"]
14remove: [
15 ["ocamlfind" "remove" "fileutils"]
16]
17depends: [
18 "ocaml" {< "5.0"}
19 "base-unix"
20 "base-bytes"
21 "ocamlbuild" {build}
22 "ocamlfind" {build}
23 "ounit" {with-test & >= "2.0.0"}
24]
25synopsis: "Functions to manipulate real file (POSIX like) and filename."
26flags: light-uninstall
27url {
28 src:
29 "https://download.ocamlcore.org/ocaml-fileutils/ocaml-fileutils/0.5.3/ocaml-fileutils-0.5.3.tar.gz"
30 checksum: [
31 "sha256=edd6852cbfeba83caa9b944f231df1daa1913e74cbfd8262297ac1b6296684e5"
32 "md5=9b719b19b96525004c88bf7bc846fa1d"
33 ]
34}