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=${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 prefix=/usr DESTDIR="$pkgdir" install }