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.1/fileutils-v0.6.1.tbz"
43 checksum: [
44 "sha256=458a540eb8e01be1a13e0e71ba6206c5e36635046e696aeb37e0848a14a5375d"
45 "sha512=11693d51b2dd5ff4d955d9e1843d758f63e9e0690c1a3b9c31709e052f3cc7dcb9fd1fd7e20baabe1ecae750f8fde9e762b1097b72ff2f0f5d5afbc6fba680f9"
46 ]
47}