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" {>= "3.5"} 21 "ocaml" {>= "4.04.0"} 22 "base-unix" 23 "csexp" {>= "1.5.0"} 24 "odoc" {with-doc} 25] 26dev-repo: "git+https://github.com/ocaml/dune.git" 27build: [ 28 ["dune" "subst"] {dev} 29 ["rm" "-rf" "vendor/csexp"] 30 ["rm" "-rf" "vendor/pp"] 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@doc" {with-doc} 40 ] 41] 42url { 43 src: "https://github.com/ocaml/dune/releases/download/3.7.1/dune-3.7.1.tbz" 44 checksum: [ 45 "sha256=adfc38f14c0188a2ad80d61451d011d27ab8839b717492d7ad42f7cb911c54c3" 46 "sha512=a74cd77ac7714f9434b5991c6dc02c6e6a2f46071d993a8985a9c9f0105182bb9e310ae2bcf7cf1d411c848d1a665e0fc0111b3597e5b1c6b634c1d398bea432" 47 ] 48} 49x-commit-hash: "e2b2d6aa984e3a5ddffa5ea00dd4f042dbf529a1"