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.2/fiber-3.0.2.tbz"
44 checksum: [
45 "sha256=a35d3ca8879630e5f4554ff059d7396e0fd40c24f6082730fd7c779c58836deb"
46 "sha512=6c77afa682dd57d47386832b0be1156b0623920b0e1f6af6819fb18e1a94f9cd31d51cd82e86ce7246b4a65c07dee6061ece3ef4a24dee2bcb6ac114969a20a2"
47 ]
48}
49x-commit-hash: "f8c75a43bc0a8e190727161c2f67ae643b884542"