update to 12.3: man-pages

This commit is contained in:
wyj
2025-03-14 12:08:04 -04:00
parent 053518b163
commit 48c1db7447
+26
View File
@@ -0,0 +1,26 @@
pkgname="man-pages"
pkgver="6.12"
pkgdesc="Linux man pages"
license=("GPL2")
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://www.kernel.org/pub/linux/docs/man-pages/${sources[0]}")
md5sums=("44de430a598605eaba3e36dd43f24298")
distdir=${distdir}
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_check(){
return 0
}
src_build() {
cd "$srcdir"
rm -v man3/crypt*
}
src_install() {
make -R GIT=false prefix=/usr DESTDIR="$pkgdir" install
}