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-or-later 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"}
17 "base-unix"
18 "stdlib-shims"
19 "seq"
20 "dune" {>= "1.11.0"}
21 "ounit2" {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 provides a 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.4/fileutils-0.6.4.tbz"
43 checksum: [
44 "sha256=7a7bb6bc6a36b6ebdac2b4e46a9e9b10d366c5a2d4417a5f1d68a1fbba0a445f"
45 "sha512=7053f8d92655d5631f1ec61ab7f9e3f6e3afedbe435038858dd9a026b9c769c6182afaa436491a398e7c4513b384a609e016718e030855996b2d9d54b461bd19"
46 ]
47}
48x-commit-hash: "324a05938d88c4b645287adbf5ceb74f4ce0daec"