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 <opensource@janestreet.com>"]
14authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
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.9"}
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: "641a95d2254ca7c51c97f07f2eed85b7a95db954"
41url {
42 src: "https://github.com/ocaml/dune/releases/download/2.9.0/dune-2.9.0.tbz"
43 checksum: [
44 "sha256=bb217cfb17e893a0b1eb002ac83c14f96adc9d0703cb51ff34ed3ef5a639a41e"
45 "sha512=fcd8bc3ea7e9a14e6787a3b0384a488e45fa51e164a175ad1b147bebb3fbcccfd8f321b9b6a7665ac3dafeb18a2a6f8626d182af3b1796691f6ed79c166a5f44"
46 ]
47}