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 5to define standard locations for configuration, cache and data files in the 6user directory and on the system. It is a straightforward implementation on 7UNIX platform and try to apply consistent policies with regard to Windows 8directories. It is inspired by the Haskell implementation of this 9specification, and it follows the same choices for Windows directories. 10[The xdg-basedir specification](http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html) 11and [the Haskell implementation](http://github.com/willdonnelly/xdg-basedir) 12and [the API of this implementation](http://xdg-basedir.forge.ocamlcore.org/api).""" 13maintainer: "Sylvain Le Gall" 14authors: "Sylvain Le Gall" 15license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 16homepage: "https://github.com/gildor478/ocaml-xdg-basedir" 17bug-reports: "https://github.com/gildor478/ocaml-xdg-basedir/issues" 18dev-repo: "git+https://github.com/gildor478/ocaml-xdg-basedir.git" 19build: ["dune" "build" "-p" name "-j" jobs] 20depends: [ 21 "ocaml" {>= "4.02"} 22 "dune" {>= "1.6"} 23 "fileutils" 24 "base-unix" 25] 26url { 27 src: 28 "https://github.com/gildor478/ocaml-xdg-basedir/releases/download/0.0.4/ocaml-xdg-basedir-0.0.4.tar.gz" 29 checksum: [ 30 "md5=aaeeb419ed00e2f3e00fee836d3483aa" 31 "sha512=5cf08cf4ecbd3d4e2193779e93d38bcb88baa12fa283b44e614f7f6d6f58d3ad05d60b6532d762b755b7270ae4f2296480f8c064e5f022b64403843fa6e500c1" 32 ] 33}