mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
rakudo.eclass requires install-dist.raku installed by a modified version of dev-lang/rakudo. Gentoo overlay's dev-lang/rakudo doesn't install install-dist.raku. rakudo.eclass is minimal and elegant. dev-raku/* packages depend on rakudo.eclass. Signed-off-by: amano.kenji <amano.kenji@proton.me>
21 lines
581 B
Bash
21 lines
581 B
Bash
# Copyright 2020-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit rakudo
|
|
|
|
COMMIT="74fdf7154bf6b13713a5486a5aff9a3b649cb251"
|
|
|
|
DESCRIPTION="An attempt to simplify building native code for a Raku module."
|
|
HOMEPAGE="https://github.com/retupmoca/P6-LibraryMake"
|
|
SRC_URI="https://github.com/retupmoca/P6-LibraryMake/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="primaryuri"
|
|
DOCS="README.md"
|
|
RDEPEND="dev-raku/Shell-Command"
|
|
DEPEND="${RDEPEND}"
|
|
S="${WORKDIR}/P6-LibraryMake-${COMMIT}"
|