update: rename lfs-12.2 to lfs

This commit is contained in:
wyj
2025-03-14 01:33:44 -04:00
parent 02fd8b18b8
commit a4b9b9fdc5
56 changed files with 0 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
pkgname="man-pages"
pkgver="6.9.1"
pkgdesc="Linux man pages"
license=("GPL2")
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://www.kernel.org/pub/linux/docs/man-pages/man-pages-6.9.1.tar.xz")
md5sums=("4d56775b6cce4edf1e496249e7c01c1a")
distdir=${DIST_DIR}/${pkgname}-${pkgver}
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_check(){
return 0
}
src_build() {
cd "$srcdir"
rm -v man3/crypt*
}
src_install() {
make prefix=/usr DESTDIR="$pkgdir" install
}