this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/configurator" 5bug-reports: "https://github.com/janestreet/configurator/issues" 6dev-repo: "git+https://github.com/janestreet/configurator.git" 7license: "Apache-2.0" 8build: [ 9 ["jbuilder" "build" "-p" name "-j" jobs] 10] 11conflicts: [ "jbuilder" { = "1.0+beta19" } ] 12depends: [ 13 "ocaml" {>= "4.04.1"} 14 "base" {>= "v0.11" & < "v0.14"} 15 "stdio" {>= "v0.11" & < "v0.14"} 16 "jbuilder" {>= "1.0+beta18.1"} 17] 18synopsis: "Helper library for gathering system configuration" 19description: """ 20Configurator is a small library that helps writing OCaml scripts that 21test features available on the system, in order to generate config.h 22files for instance. 23 24Configurator allows one to: 25- test if a C program compiles 26- query pkg-config 27- import #define from OCaml header files 28- generate config.h file""" 29url { 30 src: 31 "https://ocaml.janestreet.com/ocaml-core/v0.11/files/configurator-v0.11.0.tar.gz" 32 checksum: [ 33 "sha256=f7b8f5fe48d5e409308878aef7997dff17d4f87db0cc2688b0648b04f5888f4f" 34 "md5=55511f3ea8e3d66439910b3324701218" 35 ] 36} 37post-messages: [ "configurator is deprecated. Please use dune-configurator in new code and consider switching to it in existing projects." ] 38flags: deprecated