mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-18 07:19:01 -04:00
54 lines
732 B
Bash
54 lines
732 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit dune
|
|
|
|
DESCRIPTION="Communicate with dune using rpc"
|
|
HOMEPAGE="
|
|
https://opam.ocaml.org/packages/dune-rpc/
|
|
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/csexp:=
|
|
dev-ml/xdg:=
|
|
~dev-ml/dune-private-libs-${PV}:=
|
|
>=dev-ml/pp-1.1.0:=
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
BDEPEND="
|
|
>=dev-ml/dune-3.12:=
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
rm -r vendor/{csexp,pp} || die
|
|
}
|
|
|
|
src_configure() {
|
|
:
|
|
}
|
|
|
|
src_compile() {
|
|
dune-compile dune-rpc
|
|
}
|