this repo has no description
1opam-version: "2.0" 2synopsis: "XDG basedir location for data/cache/configuration files" 3description: """ 4This library implements the xdg-basedir specification. It helps to 5define standard locations for configuration, cache and data files in 6the user directory and on the system. It is a straightforward 7implementation on UNIX platforms and try to apply consistent policies 8with regard to Windows directories. It is inspired by the Haskell 9implementation of this specification, and it follows the same choices 10for Windows directories. See he [xdg-basedir specification][spec] and 11the [Haskell implementation][haskell]. 12[haskell]: https://github.com/willdonnelly/xdg-basedir 13[spec]: https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html 14""" 15maintainer: ["Sylvain Le Gall <sylvain@le-gall.net>"] 16authors: ["Sylvain Le Gall"] 17license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 18homepage: "https://github.com/gildor478/ocaml-xdg-basedir" 19bug-reports: "https://github.com/gildor478/ocaml-xdg-basedir/issues" 20depends: [ 21 "dune" {>= "2.9"} 22 "fileutils" 23 "base-unix" 24 "ounit2" {with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "--promote-install-files=false" 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41 ["dune" "install" "-p" name "--create-install-files" name] 42] 43dev-repo: "git+https://github.com/gildor478/ocaml-xdg-basedir.git" 44url { 45 src: 46 "https://github.com/gildor478/ocaml-xdg-basedir/releases/download/v0.0.5/xdg-basedir-0.0.5.tbz" 47 checksum: [ 48 "sha256=84f39ff2c470dcd5e36f1c50a77fbf1b417aae3263a1bd440d3e86dedd0382be" 49 "sha512=be38ff2331badcd7ef4861e71566d6355961f3fec7cd4e05e5aaa75b998afab29d4c05ad424a0df2bda6ecea9c014cc4b46839c5c2e6811ed15737bae9de03f7" 50 ] 51} 52x-commit-hash: "0f5198b7f98fa218a1b868c46ef234298d3deb6f"