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: "b796156167490e777131403f651e83779e954000"
41url {
42 src: "https://github.com/ocaml/dune/releases/download/2.8.1/dune-2.8.1.tbz"
43 checksum: [
44 "sha256=e7b405c75af321ce6518aa8e70ebdd403dbcc2ede931713e69c2b5addda4bd44"
45 "sha512=300c9f5074af5db78c8ffb17b4a1c402fce322d9af4b213aa847bfd9f9fd053e757182f3da8b207f2d24afbd609a227e8c0e57ef038ab236322229c41e240c43"
46 ]
47}