this repo has no description
1opam-version: "2.0" 2synopsis: 3 "An OCaml library that provides configuration, cache and data paths (and more!) following the suitable conventions on Linux, macOS and Windows" 4description: """ 5directories is an OCaml library that provides configuration, cache and data paths (and more!) following the suitable conventions on Linux, macOS and Windows. 6It is inspired by similar libraries for other languages such as directories-jvm. 7The following conventions are used: 8- XDG Base Directory Specification and xdg-user-dirs on Linux 9- Known Folders on Windows 10- Standard Directories on macOS. 11""" 12maintainer: ["OCamlPro <contact@ocamlpro.com>"] 13authors: ["OCamlPro <contact@ocamlpro.com>"] 14license: "ISC" 15homepage: "https://github.com/ocamlpro/directories" 16bug-reports: "https://github.com/ocamlpro/directories/issues" 17depends: [ 18 "dune" {>= "2.1"} 19 "ocaml" {>= "4.07.0"} 20 "ctypes" {>= "0.17.1" & (os = "win32" | os = "cygwin")} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/ocamlpro/directories.git" 37url { 38 src: "https://github.com/OCamlPro/directories/archive/0.4.tar.gz" 39 checksum: [ 40 "sha256=74d7ebe77255b3c592b7b8777a670c2c0cbeaeb98046d1ff418951e066877834" 41 "sha512=8bb52bc9aa6197e2c5c5dcbae41c1487043b34c5a4db3cd83daabbf589a0e3b9f5049efdd0ebd4379bd6cf53c562b12890d2bc558714d27065440e67346edd7b" 42 ] 43}