mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-14 01:23:23 -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>
25 lines
636 B
Bash
25 lines
636 B
Bash
# Copyright 2020-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit rakudo
|
|
|
|
DESCRIPTION="A command line tool for renaming files in any text editor."
|
|
HOMEPAGE="https://codeberg.org/amano.kenji/raku-File-Name-Editor"
|
|
SRC_URI="mirror://zef/F/IL/FILE_NAME_EDITOR/553ab3efd41a7404684ca8c824efa8227791a8f7.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="primaryuri"
|
|
DOCS="README.md"
|
|
RDEPEND="dev-raku/File-Temp
|
|
dev-raku/Term-termios"
|
|
DEPEND="${RDEPEND}"
|
|
S="${WORKDIR}/dist"
|
|
|
|
src_install() {
|
|
rakudo_src_install
|
|
rakudo_symlink_bin file-name-editor
|
|
}
|