this repo has no description
1opam-version: "2.0"
2synopsis: "A library used to manage configuration files"
3description: """
4Config_file is a library used to manage the configuration file(s) of
5an application. You simply define your options and it performs the
6loading and saving of the options in a file. You can also use the same
7options in the command line.
8"""
9maintainer: ["Antonin Décimo <antonin@tarides.com>"]
10authors: [
11 "Antonin Décimo <antonin@tarides.com>"
12 "Fabrice Le Fessant <fabrice.lefessant@inria.fr>"
13 "Maxence Guesdon <maxence.guesdon@inria.fr>"
14 "Jean-Baptiste Rouquier <jrouquie@gmail.com>"
15]
16license: "LGPL-2.0-or-later"
17homepage: "https://github.com/MisterDA/config-file"
18bug-reports: "https://github.com/MisterDA/config-file/issues"
19depends: [
20 "dune" {>= "2.9"}
21 "ocaml" {>= "4.02" & < "5.0"}
22 "camlp4" {build}
23 "cppo" {>= "1.6.7" & build}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "--promote-install-files=false"
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40 ["dune" "install" "-p" name "--create-install-files" name]
41]
42dev-repo: "git+https://github.com/MisterDA/config-file.git"
43url {
44 src:
45 "https://github.com/MisterDA/config-file/releases/download/release-1.2.1/config-file-release-1.2.1.tbz"
46 checksum: [
47 "sha256=01d5c5065e5bbd7a8f1ee0659aea1d651a0c81d10117243739b43d7d3084a14b"
48 "sha512=d2411618690715d00f29351dc976c23dc84bc9a3bd93b7139750e26a741fb853d2d611b0fd19d23094f876f93f4d4bb9c11e2ef0593571dc66240b1c85b37bbd"
49 ]
50}
51x-commit-hash: "cbd9eff5fdd6bbf2947cf58207a96fe464bd839e"