22 lines
587 B
Plaintext
22 lines
587 B
Plaintext
# Description: The Linux manpages collection
|
|
# URL: http://man7.org/linux/man-pages/index.html
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=man-pages
|
|
version=4.06
|
|
release=1
|
|
source=(http://www.kernel.org/pub/linux/docs/$name/$name-$version.tar.xz \
|
|
http://www.kernel.org/pub/linux/docs/$name/$name-posix/$name-posix-2013-a.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
rm man1/time.1 man5/passwd.5 man5/attr.5
|
|
make DESTDIR=$PKG install
|
|
|
|
cd $SRC/$name-posix-2013-a
|
|
make gz
|
|
make DESTDIR=$PKG install
|
|
|
|
touch $PKG/usr/share/man/whatis
|
|
}
|