this repo has no description
1opam-version: "2.0" 2maintainer: "Sylvain Le Gall <sylvain@le-gall.net>" 3authors: [ "Sylvain Le Gall" ] 4homepage: "https://github.com/gildor478/ocaml-xdg-basedir" 5bug-reports: "https://github.com/gildor478/ocaml-xdg-basedir/issues" 6dev-repo: "git+https://github.com/gildor478/ocaml-xdg-basedir.git" 7build: [ 8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 9 ["ocaml" "setup.ml" "-build"] 10] 11remove: [["ocamlfind" "remove" "xdg-basedir"]] 12depends: [ 13 "ocaml" {< "5.0.0"} 14 "ocamlfind" 15 "fileutils" 16 "ounit" 17 "ocamlbuild" {build} 18] 19conflicts: [ 20 "xdg-basedir" 21] 22install: ["ocaml" "setup.ml" "-install"] 23synopsis: "xdg-basedir specification implementation" 24description: """ 25This library implements the xdg-basedir specification. It helps to 26define standard locations for configuration, cache and data files in 27the user directory and on the system. 28 29http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html""" 30flags: light-uninstall 31url { 32 src: 33 "https://download.ocamlcore.org/xdg-basedir/ocaml-xdg-basedir/0.0.3/ocaml-xdg-basedir-0.0.3.tar.gz" 34 checksum: [ 35 "sha256=0b2bdead251d686fee43e478c2aebb84a8e4af90011bdc8bd29870b37dcd66b3" 36 "md5=68367eba73f6094fea8c6ffee0072e20" 37 ] 38}