blob: 6343fd88ce77fce6100c65b93e9c5478e03b6a21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=PEDERST
DIST_VERSION=1.11
inherit perl-module
DESCRIPTION="A filename renaming utility based on perl regular expression"
HOMEPAGE="https://metacpan.org/source/PEDERST/rename-1.11"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
src_install() {
perl-module_src_install
mv -vf "${D}"/usr/bin/rename "${D}"/usr/bin/perl-rename || die
mv -vf "${D}"/usr/share/man/man1/rename.1 "${D}"/usr/share/man/man1/perl-rename.1 || die
}
|