this repo has no description
1opam-version: "2.0"
2synopsis: "XDG basedir location for data/cache/configuration files"
3description: """
4This library provides an API to perform POSIX like operations on files like:
5
6- mv
7- cp
8- rm
9- mkdir
10- touch
11- which...
12
13It also provides a module to manipulate abstract filenames:
14
15- classification
16- make_relative: made a filename relative to another
17- make_absolute
18"""
19maintainer: ["Sylvain Le Gall <sylvain+ocaml@le-gall.net>"]
20authors: ["Sylvain Le Gall"]
21license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
22homepage: "https://github.com/gildor478/ocaml-fileutils"
23doc: "https://gildor478.github.io/ocaml-fileutils/"
24bug-reports: "https://github.com/gildor478/ocaml-fileutils/issues"
25depends: [
26 "dune" {>= "2.9"}
27 "base-unix"
28 "ounit2" {>= "2.0.0" & with-test}
29 "ocaml" {>= "4.14"}
30 "odoc" {with-doc}
31]
32build: [
33 ["dune" "subst"] {dev}
34 [
35 "dune"
36 "build"
37 "-p"
38 name
39 "-j"
40 jobs
41 "--promote-install-files=false"
42 "@install"
43 "@runtest" {with-test}
44 "@doc" {with-doc}
45 ]
46 ["dune" "install" "-p" name "--create-install-files" name]
47]
48dev-repo: "git+https://github.com/gildor478/ocaml-fileutils.git"
49url {
50 src:
51 "https://github.com/gildor478/ocaml-fileutils/releases/download/v0.6.6/fileutils-0.6.6.tbz"
52 checksum: [
53 "sha256=796d5791e2bf7b3bff200cf5057a7a1878439ebcd74ed0f1088cf86756d52be6"
54 "sha512=ecc38b1577ab108bd24d1e9f0e83596254e542eefb37020dedcff7ca0109e562411cbb9806fbc6f88f4166569bf061a444971388c26950ec02dfc48b35daed90"
55 ]
56}
57x-commit-hash: "7f007779741f578f2749f1699d47a1c28e9c3f0d"