mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
55 lines
976 B
Bash
55 lines
976 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit dune multiprocessing
|
|
|
|
DESCRIPTION="RFC3986 URI parsing library for OCaml"
|
|
HOMEPAGE="https://github.com/mirage/ocaml-uri"
|
|
SRC_URI="https://github.com/mirage/ocaml-uri/archive/v${PV}.tar.gz -> ocaml-${P}.tar.gz"
|
|
S="${WORKDIR}/ocaml-${P}"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="ocamlopt re sexp test"
|
|
|
|
RDEPEND="
|
|
dev-ml/angstrom
|
|
dev-ml/stringext
|
|
|
|
re? (
|
|
dev-ml/re
|
|
)
|
|
sexp? (
|
|
dev-ml/ppx_sexp_conv
|
|
dev-ml/sexplib0
|
|
)
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
dev-ml/ounit
|
|
dev-ml/ppx_sexp_conv
|
|
)
|
|
"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
src_compile() {
|
|
local pkgs="uri"
|
|
for u in sexp re ; do
|
|
if use ${u} ; then
|
|
pkgs="${pkgs},uri-${u}"
|
|
fi
|
|
done
|
|
dune build --only-packages "${pkgs}" -j $(makeopts_jobs) --profile release || die
|
|
}
|
|
|
|
src_install() {
|
|
dune_src_install uri
|
|
use re && dune_src_install uri-re
|
|
use sexp && dune_src_install uri-sexp
|
|
}
|