blob: 24c3e0d7c9c7fc996f3df71e2522d7bd0290bea7 (
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-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="colorize man pages"
HOMEPAGE="https://github.com/Freed-Wu/manpager"
SRC_URI="
$HOMEPAGE/archive/${PV}.tar.gz -> $P.tar.gz
"
KEYWORDS="~amd64 ~arm64"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
sys-apps/bat
app-text/ansifilter
"
src_prepare() {
default
sed -i s=/usr=$EPREFIX/usr=g bin/$PN
}
src_install() {
dobin bin/$PN
echo "MANPAGER=manpager" | newenvd - 00manpager
}
|