39 lines
993 B
Text
39 lines
993 B
Text
# Template file for 'man-pages'
|
|
pkgname=man-pages
|
|
version=3.40
|
|
homepage="http://man7.org/linux/man-pages/index.html"
|
|
distfiles="${KERNEL_SITE}/docs/man-pages/$pkgname-$version.tar.gz"
|
|
short_desc="Linux Documentation Project manual pages"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
checksum=0f30f8168d85a12f6032217a44df484ef7f1a9c1c8d7bace1faa2d10f8629cff
|
|
long_desc="
|
|
The Linux Documentation Project (LDP) manual pages."
|
|
|
|
noarch=yes
|
|
|
|
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
|
|
# From tzdata.
|
|
rm -f man5/tzfile.5
|
|
rm -f man8/zdump.8
|
|
rm -f man8/tzselect.8
|
|
rm -f man8/zic.8
|
|
# From attr-devel.
|
|
rm -f man2/*xattr.2
|
|
}
|