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 "ocaml" {>= "4.03.0"} 21 "dune" {>= "2.7" & >= "2.6.0"} 22 "odoc" {with-doc} 23] 24dev-repo: "git+https://github.com/ocaml/dune.git" 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@doc" {with-doc} 36 ] 37] 38url { 39 src: "https://github.com/ocaml/dune/releases/download/2.7.0/dune-2.7.0.tbz" 40 checksum: [ 41 "sha256=b417ca85bdce4171e71255be4a9c5a7572646cb1dcb221bba3757dc6ac8f1c15" 42 "sha512=5e5b649b1a16747bf2a0bf093ecf2dc701b2713c166e3d25731422bba2b94e807ded2242ee0e750e2264d21a03c966c24f4812c6d5ed690bba60543db7303f89" 43 ] 44}