Skip to content

Commit 257ff05

Browse files
authored
Merge pull request ocaml#27918 from Tralalero-Tralalal/opam-publish-binary_tree.1.0
Package binary_tree.1.0
2 parents d4d1aa6 + d7d0ba4 commit 257ff05

File tree

1 file changed

+33
-0
lines changed
  • packages/binary_tree/binary_tree.1.0

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: "Pierre Castoran, slightly modified by Humam Alhusaini"
4+
homepage: "https://github.com/Tralalero-Tralalal/coq-binary-tree"
5+
dev-repo: "git+https://github.com/Tralalero-Tralalal/coq-binary-tree"
6+
bug-reports: "https://github.com/Tralalero-Tralalal/coq-binary-tree/issues"
7+
license: "MIT"
8+
depends: [
9+
"coq" {>= "8.16"}
10+
]
11+
build: [
12+
["coq_makefile" "-f" "_CoqProject" "-o" "Makefile"]
13+
[make]
14+
]
15+
install: [
16+
["mkdir" "-p" "%{lib}%/coq/user-contrib/coq-binary-tree"]
17+
["cp" "binary_tree.vo" "binary_tree.glob" "%{lib}%/coq/user-contrib/coq-binary-tree/"]
18+
]
19+
remove: [
20+
["rm" "-rf" "%{lib}%/coq/user-contrib/coq-binary-tree"]
21+
]
22+
synopsis: "A Coq binary tree module"
23+
description: """
24+
This package provides a simple binary tree data structure and associated functions.
25+
"""
26+
url {
27+
src:
28+
"https://github.com/Tralalero-Tralalal/coq-binary-tree/archive/refs/tags/binary-tree.tar.gz"
29+
checksum: [
30+
"md5=46899bef1acd87c089b954ae9ba0e975"
31+
"sha512=7091014ff2e378c8e193aca22da8cccdc5513350abddb78c2abf2ecccb3758db9b55e4d32831eeba170d2042473fcf3854a0d6bf1838d99088e73b27d3dffdbd"
32+
]
33+
}

0 commit comments

Comments
 (0)