this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The fpath programmers"] 4homepage: "https://erratique.ch/software/fpath" 5doc: "https://erratique.ch/software/fpath/doc" 6dev-repo: "git+https://erratique.ch/repos/fpath.git" 7bug-reports: "https://github.com/dbuenzli/fpath/issues" 8tags: [ "file" "system" "path" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.03.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.9.0"} 15 "astring" 16] 17build: [[ 18 "ocaml" "pkg/pkg.ml" "build" 19 "--dev-pkg=true" {dev} ]] 20 21synopsis: """File system paths for OCaml""" 22description: """\ 23 24Fpath is an OCaml module for handling file system paths with POSIX or 25Windows conventions. Fpath processes paths without accessing the file 26system and is independent from any system library. 27 28Fpath depends on [Astring][astring] and is distributed under the ISC 29license. 30 31[astring]: http://erratique.ch/software/astring 32""" 33url { 34 src: "https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz" 35 checksum: [ 36 "sha256=12b08ff192d037d9b6d69e9ca19d1d385184f20b3237c27231e437ac81ace70f" 37 "md5=0740b530e8fed5b0adc5eee8463cfc2f" 38 ] 39} 40 41x-maintenance-intent: ["(latest)"]