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.0"} 21 "dune-private-libs" {= version} 22] 23dev-repo: "git+https://github.com/ocaml/dune.git" 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@doc" {with-doc} 35 ] 36] 37url { 38 src: "https://github.com/ocaml/dune/releases/download/2.1.2/dune-2.1.2.tbz" 39 checksum: [ 40 "sha256=9c3278ebb3ec14dc4b1880671371985edcd6cbb979260dd403f28acabbcc5faf" 41 "sha512=ab2d4a3817fbbe80de6a1fd8052c607e6f08489dd8f3b1f18f2a79260c8793472b4dfbfec232fc517d473f1d893ac3f797fdf35366c2d031c899a7db07097ee6" 42 ] 43}