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.3/fileutils-v0.6.3.tbz" 43 checksum: [ 44 "sha256=eff581c488e9309eb02268bbfa3d4c9c30ff40d45f7b1e9ef300b3ef0e831462" 45 "sha512=2c5e75b894e9f5e3b003d61977a87f5c6964a89d844949eedc55f97c5875cc52052182420bbb4e73925d306479c66400df74e4adfccc5b2102347d13e99505cf" 46 ] 47}