Files
guru/dev-ml/ocamlc-loc/ocamlc-loc-3.13.1.ebuild
Hiroki Tokunaga fd34648f20 dev-ml/ocamlc-loc: replace the removed dependency
Signed-off-by: Hiroki Tokunaga <tokusan441@gmail.com>
2024-08-02 12:01:01 +09:00

45 lines
649 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-ml/dune-private-libs-${PV}:=
"
DEPEND="
${RDEPEND}
"
src_configure() {
:
}
src_compile() {
dune-compile ocamlc-loc
}
src_install() {
dune-install ocamlc-loc
}