guru/app-shells/manpager/manpager-0.0.3.ebuild
Wu, Zhenyu 4ce3c0bb0f
*/*: fix pkgcheck scn
Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
2024-11-07 13:06:56 +08:00

31 lines
506 B
Bash

# 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
"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
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
}