this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3synopsis: "A tool to check and update source headers, using checksums"
4description: """\
5The header-check tool scans a source project, lists all existing headers and
6can be used to update them. It uses checksums to create identifiers for
7headers and works with OCaml, C/C++ and Shell kinds of comments.
8"""
9authors: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
10maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
11homepage: "https://ocamlpro.github.io/header-check"
12doc: "https://ocamlpro.github.io/header-check/sphinx"
13bug-reports: "https://github.com/ocamlpro/header-check/issues"
14dev-repo: "git+https://github.com/ocamlpro/header-check.git"
15tags: "org:ocamlpro"
16build: [
17 ["dune" "subst"] {dev}
18 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
31]
32install: [
33 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
34]
35depends: [
36 "ocaml" {>= "4.07.0"}
37 "dune" {>= "2.7.0"}
38 "ocplib_stuff" {>= "0.1"}
39 "ez_file" {>= "0.3"}
40 "base-unix" {>= "base"}
41 "ppx_inline_test" {with-test}
42 "ppx_expect" {with-test}
43 "odoc" {with-doc}
44 "ocamlformat" {with-test}
45]
46
47url {
48 src: "https://github.com/ocamlpro/header-check/archive/v0.1.0.tar.gz"
49 checksum: [ "sha256=44ef7d6fe8686c3ab8161094d1fcca37e3cce5f2071ed2ad5afc11c180fe69e7" ]
50}