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