blob: 810342261dfe94c7ad01d2dfd7a5d98afd946360 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="An extended version of rxvt-unicode's tabbed perl extension"
HOMEPAGE="https://github.com/mina86/urxvt-tabbedex"
MY_PN=${PN/urxvt-/}
SRC_URI="https://github.com/mina86/urxvt-tabbedex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="x11-terms/rxvt-unicode[perl]"
DOCS=( AUTHORS README.md command-runner.sample )
src_compile() { :; }
src_install() {
einstalldocs
insinto /usr/$(get_libdir)/urxvt/perl/
doins ${MY_PN}
insinto /usr/$(get_libdir)/urxvt/
newins pgid-cd.pl tabbedex-pgid-cd
}
|