56 lines
1.3 KiB
Bash
56 lines
1.3 KiB
Bash
# Template file for 'man-pages'
|
|
pkgname=man-pages
|
|
version=4.02
|
|
revision=1
|
|
noarch=yes
|
|
short_desc="Linux Documentation Project (LDP) manual pages"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://man7.org/linux/man-pages/index.html"
|
|
distfiles="${KERNEL_SITE}/docs/man-pages/$pkgname-$version.tar.xz"
|
|
checksum=48aacb75d522dd31978682c4fd8bc68e43c9a409bc4c7a126810e7610dff0dd3
|
|
|
|
do_install() {
|
|
make all prefix=${DESTDIR}/usr
|
|
|
|
# Remove dup manpages.
|
|
cd ${DESTDIR}/usr/share/man
|
|
# coreutils
|
|
rm -f man1/{chgrp,chmod,chown,cp,dir,dd}.1
|
|
rm -f man1/{df,dircolors,du,install,ln,ls}.1
|
|
rm -f man1/{mkdir,mkfifo,mknod,mv,rm,rmdir}.1
|
|
rm -f man1/{touch,vdir}.1
|
|
# shadow
|
|
rm -f man5/passwd.5
|
|
rm -f man3/getspnam.3
|
|
# diffutils
|
|
rm -f man1/diff.1
|
|
# xf86-input-mouse
|
|
rm -f man4/mouse.4
|
|
# tzdata
|
|
rm -f man5/tzfile.5
|
|
rm -f man8/zdump.8
|
|
rm -f man8/tzselect.8
|
|
rm -f man8/zic.8
|
|
# mdocml
|
|
rm -f man7/man.7
|
|
rm -f man7/mdoc.7
|
|
# attr-devel
|
|
rm -f man5/attr.5
|
|
rm -f man2/*xattr.2
|
|
# openssl-devel
|
|
mv man3/rand.3 man3/glibc-rand.3
|
|
mv man3/err.3 man3/glibc-err.3
|
|
# 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}
|
|
}
|
|
|
|
man-pages-devel_package() {
|
|
noarch=yes
|
|
short_desc+=" - development pages"
|
|
pkg_install() {
|
|
vmove usr/share/man/man[2-3]
|
|
}
|
|
}
|