core/man-pages/Pkgfile

21 lines
540 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The Linux manpages collection
2021-03-22 12:56:44 +01:00
# URL: https://man7.org/linux/man-pages/index.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=man-pages
2021-08-28 09:27:17 +02:00
version=5.13
2017-11-27 14:55:46 +01:00
release=1
2012-03-05 13:32:53 +01:00
source=(http://www.kernel.org/pub/linux/docs/$name/$name-$version.tar.xz \
2021-03-22 12:56:44 +01:00
http://www.kernel.org/pub/linux/docs/$name/$name-posix/$name-posix-2017-a.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
2021-03-22 12:56:44 +01:00
cd $name-$version
rm man5/passwd.5
2021-06-22 13:55:58 +02:00
make prefix=/usr DESTDIR=$PKG install
2008-06-19 17:13:20 +02:00
2021-03-22 12:56:44 +01:00
cd $SRC/$name-posix-2017
2021-06-22 13:55:58 +02:00
make prefix=/usr DESTDIR=$PKG install
2008-06-19 17:13:20 +02:00
2021-03-22 12:56:44 +01:00
touch $PKG/usr/share/man/whatis
2006-02-23 16:26:10 +01:00
}