this repo has no description
1opam-version: "2.0"
2maintainer: "Sylvain Le Gall <sylvain+ocaml@le-gall.net>"
3authors: [ "Sylvain Le Gall" ]
4homepage: "https://github.com/gildor478/ocaml-fileutils"
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"
8doc: "https://gildor478.github.io/ocaml-fileutils/"
9
10build: [
11 ["dune" "build" "-p" name "-j" jobs]
12 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
13 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
14]
15depends: [
16 "ocaml" {>= "4.03" & < "5.0"}
17 "base-unix"
18 "base-bytes"
19 "stdlib-shims"
20 "dune" {>= "1.11.0"}
21 "ounit" {with-test & >= "2.0.0"}
22]
23synopsis: "API to manipulate files (POSIX like) and filenames"
24description: """
25This library provides an API to perform POSIX like operations on files like:
26
27- mv
28- cp
29- rm
30- mkdir
31- touch
32- which...
33
34It also providesa module to manipulate abstract filenames:
35
36- classification
37- make_relative: made a filename relative to another
38- make_absolute
39"""
40url {
41 src:
42 "https://github.com/gildor478/ocaml-fileutils/releases/download/v0.6.2/fileutils-v0.6.2.tbz"
43 checksum: [
44 "sha256=c73d94247b6aef1450853ed14677ae58e9701376475d3f29ca730472a0171e1d"
45 "sha512=104c7389832f22ec189ce6f1596144b28dcaeea7d23d5b19d369c44e54326e97fcb7b4f4c4a8d2965523e63b35b594a1351b7e630dde590871efe512fe38853c"
46 ]
47}