move: sys/ -> lfs-12.2-systemd/

This commit is contained in:
2025-01-21 02:51:55 -05:00
parent 2d1eae9069
commit 3c514cdac2
5 changed files with 0 additions and 0 deletions

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
}