this repo has no description
1opam-version: "2.0"
2synopsis: "Helper library for gathering system configuration"
3description: """
4dune-configurator is a small library that helps writing OCaml scripts that
5test features available on the system, in order to generate config.h
6files for instance.
7Among other things, dune-configurator allows one to:
8- test if a C program compiles
9- query pkg-config
10- import #define from OCaml header files
11- generate config.h file
12"""
13maintainer: ["Jane Street Group, LLC"]
14authors: ["Jane Street Group, LLC"]
15license: "MIT"
16homepage: "https://github.com/ocaml/dune"
17doc: "https://dune.readthedocs.io/"
18bug-reports: "https://github.com/ocaml/dune/issues"
19depends: [
20 "dune" {>= "2.8"}
21 "ocaml" {>= "4.03.0"}
22 "result"
23 "csexp" {>= "1.3.0"}
24 "odoc" {with-doc}
25]
26dev-repo: "git+https://github.com/ocaml/dune.git"
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@doc" {with-doc}
38 ]
39]
40x-commit-hash: "b6a3f66fb15378fc7170e94778f4d2c0b142ad92"
41url {
42 src: "https://github.com/ocaml/dune/releases/download/2.8.4/dune-2.8.4.tbz"
43 checksum: [
44 "sha256=4e6420177584aabdc3b7b37aee3026b094b82bf5d7ed175344a68e321f72e8ac"
45 "sha512=efc1834c4add40138a101734665a1f462c19fe76d1cbb457b1fc20f95991118a50b24d485fb98d39046e41bec03885a8dc071bf8add51083ac9780bff9f6668a"
46 ]
47}