Skip to content

Commit 3a3bfd2

Browse files
authored
Merge pull request ocaml#23588 from chetmurthy/update-camlp5-buildscripts
camlp5-buildscripts: bugfixes and cleanups (0.02)
2 parents 90457dc + 780ba90 commit 3a3bfd2

File tree

1 file changed

+36
-0
lines changed
  • packages/camlp5-buildscripts/camlp5-buildscripts.0.02

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
synopsis: "Camlp5 Build scripts (written in OCaml)"
2+
description:
3+
"""
4+
These are build-scripts that are helpful in building Camlp5 and packages based on Camlp5.
5+
As such, they need to *not* depend on Camlp5. The command are *not* installed in a
6+
bin-directory, but in the package-directory, hence invoked via the "ocamlfind package/exe"
7+
method.
8+
"""
9+
opam-version: "2.0"
10+
maintainer: "Chet Murthy <[email protected]>"
11+
authors: ["Chet Murthy"]
12+
homepage: "https://github.com/camlp5/camlp5-buildscripts"
13+
license: "BSD-3-Clause"
14+
bug-reports: "https://github.com/camlp5/camlp5-buildscripts/issues"
15+
dev-repo: "git+https://github.com/camlp5/camlp5-buildscripts.git"
16+
doc: "https://github.com/camlp5/camlp5-buildscripts/doc"
17+
18+
depends: [
19+
"ocaml" { >= "4.10.0" }
20+
"not-ocamlfind" { >= "0.01" }
21+
"mdx" { with-test & >= "2.2.1" }
22+
"fmt"
23+
"re" { >= "1.10.4" }
24+
"bos" { >= "0.2.1" }
25+
]
26+
build: [
27+
[make "sys"]
28+
[make "test"] {with-test}
29+
]
30+
install: [make "install"]
31+
url {
32+
src: "https://github.com/camlp5/camlp5-buildscripts/archive/refs/tags/0.02.tar.gz"
33+
checksum: [
34+
"sha512=8d503ac0f1c820a6cb0746553280dbce579e139baa3dc98eb1c5a26ca3eccd0ca8089949bed4e1d6567d7170ca7fb79578de76a280290cd3020d060e8e7128c9"
35+
]
36+
}

0 commit comments

Comments
 (0)