blob: 8d3c9b52546284d02437c167425046c95b87905d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit opam
DESCRIPTION="Heterogeneous value maps for OCaml"
HOMEPAGE="http://erratique.ch/software/hmap"
SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
dev-ml/ocamlbuild
dev-ml/findlib
dev-ml/topkg
"
src_compile() {
ocaml pkg/pkg.ml build || die
}
|