summaryrefslogtreecommitdiff
path: root/core/findutils
diff options
context:
space:
mode:
Diffstat (limited to 'core/findutils')
-rw-r--r--core/findutils/.footprint10
-rw-r--r--core/findutils/.signature6
-rw-r--r--core/findutils/MAKEPKG43
3 files changed, 59 insertions, 0 deletions
diff --git a/core/findutils/.footprint b/core/findutils/.footprint
new file mode 100644
index 0000000..c7859cc
--- /dev/null
+++ b/core/findutils/.footprint
@@ -0,0 +1,10 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/find
+-rwxr-xr-x root/root bin/xargs
+drwxr-xr-x root/root share/
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/find.1.gz
+-rw-r--r-- root/root usr/share/man/man1/xargs.1.gz
diff --git a/core/findutils/.signature b/core/findutils/.signature
new file mode 100644
index 0000000..a09741b
--- /dev/null
+++ b/core/findutils/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mPzN0V1Zoyt5AbTTP9eRmoUQXAQYfl+W1ksFkKLy1qzfDaK6A6uR/zmgQBD/JCxvDSg4mwSrY8xPBHPf+NsBhgg=
+
+SHA256 (MAKEPKG) = 165631ec4d51f7b4906fc6a0e1ca25c38cb36d8201a00e66be2af91bc0178005
+SHA256 (.footprint) = 5c501e3c2e88b2e60aca0b1ada202a9eaa26baae14562b6631cb509d384c18f8
+SHA256 (findutils-4.11.0.tar.xz) = bfd19cb06cc71f3352d567e90284d8cdac02ac89774bbeadf0b533b0c11432fd
+SHA256 (findutils#4.11.0-1.pkg.tar.gz) = 1a9a589abd9068397ea04385314622be8cd37c29fd41c0d24bfc737e7514fd26
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