diff options
Diffstat (limited to 'core/findutils/MAKEPKG')
| -rw-r--r-- | core/findutils/MAKEPKG | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/core/findutils/MAKEPKG b/core/findutils/MAKEPKG new file mode 100644 index 0000000..71630a1 --- /dev/null +++ b/core/findutils/MAKEPKG @@ -0,0 +1,43 @@ +#!/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 |
