-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune-project
29 lines (26 loc) · 1.09 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(lang dune 2.9)
(name xdg-basedir)
(generate_opam_files true)
(source (github gildor478/ocaml-xdg-basedir))
(license "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception")
(authors "Sylvain Le Gall")
(maintainers "Sylvain Le Gall <sylvain@le-gall.net>")
(package
(name xdg-basedir)
(synopsis "XDG basedir location for data/cache/configuration files")
(description
"\| This library implements the xdg-basedir specification. It helps to
"\| define standard locations for configuration, cache and data files in
"\| the user directory and on the system. It is a straightforward
"\| implementation on UNIX platforms and try to apply consistent policies
"\| with regard to Windows directories. It is inspired by the Haskell
"\| implementation of this specification, and it follows the same choices
"\| for Windows directories. See he [xdg-basedir specification][spec] and
"\| the [Haskell implementation][haskell].
"\| [haskell]: https://github.com/willdonnelly/xdg-basedir
"\| [spec]: https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
)
(depends
fileutils
base-unix
(ounit2 :with-test)))