Files
gentoo/dev-ml/uuidm/uuidm-0.9.9.ebuild
Alfredo Tupone 4d8497fd27 dev-ml/uuidm: add 0.9.9
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2024-10-19 16:58:03 +02:00

26 lines
552 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit opam
DESCRIPTION="Universally unique identifiers (UUIDs) for OCaml"
HOMEPAGE="https://github.com/dbuenzli/uuidm/"
SRC_URI="https://github.com/dbuenzli/uuidm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="+ocamlopt"
BDEPEND="
dev-ml/findlib[ocamlopt=]
dev-ml/ocamlbuild[ocamlopt=]
dev-ml/topkg
"
src_compile() {
ocaml pkg/pkg.ml build || die
}