diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2024-11-22 09:17:58 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2024-11-22 09:19:26 +0100 |
commit | eb61cfb99a46bad5bc40ffe13b9093df76cd1b87 (patch) | |
tree | 4f94f878f643934e675267c2bec0af7cc1e0fc75 /dev-ml/0install/0install-2.18-r1.ebuild | |
parent | media-gfx/plantuml: add 1.2024.8 (diff) | |
download | gentoo-eb61cfb99a46bad5bc40ffe13b9093df76cd1b87.tar.gz gentoo-eb61cfb99a46bad5bc40ffe13b9093df76cd1b87.tar.bz2 gentoo-eb61cfb99a46bad5bc40ffe13b9093df76cd1b87.zip |
dev-ml/0install: fix deps
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/0install/0install-2.18-r1.ebuild')
-rw-r--r-- | dev-ml/0install/0install-2.18-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-ml/0install/0install-2.18-r1.ebuild b/dev-ml/0install/0install-2.18-r1.ebuild new file mode 100644 index 000000000000..6041f253e5a0 --- /dev/null +++ b/dev-ml/0install/0install-2.18-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Package dependency solver" +HOMEPAGE="https://docs.0install.net/developers/solver/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tbz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+ocamlopt" + +RDEPEND=" + dev-ml/lwt:=[ocamlopt?] + dev-ml/ocaml-sha:=[ocamlopt?] + dev-ml/ocplib-endian:=[ocamlopt?] + dev-ml/ocurl:=[ocamlopt?] + dev-ml/react:= + dev-ml/stdlib-shims:=[ocamlopt?] + dev-ml/xmlm:= + dev-ml/yojson:=[ocamlopt?] +" +BDEPEND="dev-ml/findlib" + +RESTRICT="test" + +src_compile() { + dune-compile 0install-solver 0install +} + +src_install() { + dune-install 0install-solver 0install +} |