50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# Template file for 'man-pages'
|
|
pkgname=man-pages
|
|
version=6.17
|
|
revision=1
|
|
short_desc="Linux Documentation Project (LDP) manual pages"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.kernel.org/doc/man-pages/index.html"
|
|
distfiles="${KERNEL_SITE}/docs/man-pages/man-pages-${version}.tar.xz"
|
|
checksum=d18f21a602b09778a5a9096bf1be8441b7733e998150474accf703d165f4ebf4
|
|
|
|
do_install() {
|
|
make -R install prefix=/usr DESTDIR=${DESTDIR}
|
|
|
|
# Remove dup manpages.
|
|
cd ${DESTDIR}/usr/share/man
|
|
# shadow
|
|
rm man5/passwd.5
|
|
rm man3/getspnam.3
|
|
# tzdata
|
|
rm man5/tzfile.5
|
|
rm man8/zdump.8
|
|
rm man8/tzselect.8
|
|
rm man8/zic.8
|
|
# mdocml
|
|
rm man7/man.7
|
|
# Rename some glibc specific manpages
|
|
mv man1/{iconv.1,glibc-iconv.1}
|
|
mv man1/{ldd.1,glibc-ldd.1}
|
|
mv man1/{getent.1,glibc-getent.1}
|
|
# libgpiod-devel
|
|
mv man3/{clock.3,glibc-clock.3}
|
|
mv man3/{end.3,glibc-end.3}
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
|
|
# libxcrypt-devel
|
|
rm man3/crypt.3
|
|
rm man3/crypt_r.3
|
|
fi
|
|
|
|
sed 's/^\.TH SYSLOG 2/.TH KLOGCTL 3/' man2/syslog.2 >man3/klogctl.3
|
|
}
|
|
|
|
man-pages-devel_package() {
|
|
short_desc+=" - development pages"
|
|
pkg_install() {
|
|
vmove usr/share/man/man[2-3]
|
|
}
|
|
}
|