guru/dev-ml/ocamlc-loc/ocamlc-loc-3.16.0-r1.ebuild
Hiroki Tokunaga 81bdbe9803
dev-ml/ocamlc-loc: remove the vendored csexp and pp
Signed-off-by: Hiroki Tokunaga <tokusan441@gmail.com>
2024-09-29 15:48:20 +09:00

52 lines
728 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Parse ocaml compiler output into structured form"
HOMEPAGE="
https://opam.ocaml.org/packages/ocamlc-loc/
https://github.com/ocaml/dune
"
SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/dune-${PV}"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
RESTRICT="test"
RDEPEND="
>=dev-lang/ocaml-4.08.0:=
~dev-ml/dune-private-libs-${PV}:=
"
DEPEND="
${RDEPEND}
"
BDEPEND="
>=dev-ml/dune-3.12:=
"
src_prepare() {
default
rm -r vendor/{csexp,pp} || die
}
src_configure() {
:
}
src_compile() {
dune-compile ocamlc-loc
}