#!/bin/mkpkg # description: GNU find, xargs, and locate utilities # url: https://www.gnu.org/software/findutils # license: GPL-3.0 name=findutils version=4.11.0 release=1 source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) sha256sums=( "bfd19cb06cc71f3352d567e90284d8cdac02ac89774bbeadf0b533b0c11432fd" ) build() { cd $name-$version ./configure \ --prefix=/ \ --mandir=/usr/share/man \ --enable-threads=posix \ --disable-nls make make DESTDIR=$PKG install rm -f $PKG/bin/updatedb rm -f $PKG/bin/locate rm -rf $PKG/libexec rm -rf $PKG/var rm -rf $PKG/share/info rm -rf $PKG/usr/share/man/man1/updatedb.1 rm -rf $PKG/usr/share/man/man1/locate.1 rm -rf $PKG/usr/share/man/man5 } signify() { untrusted comment: public key RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 } # vim: filetype=sh