19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
# Description: The Linux manpages collection
|
|
# URL: http://www.win.tue.nl/~aeb/linux/man/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: man
|
|
|
|
name=man-pages
|
|
version=2.57
|
|
release=1
|
|
source=(ftp://ftp.win.tue.nl/pub/linux-local/manpages/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
rm man1/time.1 man5/passwd.5 man2/quotactl.2
|
|
make gz
|
|
make MANDIR=$PKG/usr/man install
|
|
touch $PKG/usr/man/whatis
|
|
rm -rf $PKG/usr/man/man?p
|
|
}
|