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 }