summaryrefslogtreecommitdiff
path: root/repo/core/findutils.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/findutils.xibuild')
-rw-r--r--repo/core/findutils.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/findutils.xibuild b/repo/core/findutils.xibuild
new file mode 100644
index 0000000..899abfb
--- /dev/null
+++ b/repo/core/findutils.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(glibc sh)
+
+SOURCE=https://ftp.gnu.org/gnu/findutils/findutils-4.8.0.tar.xz
+DESC="GNU utilities to locate files"
+
+build () {
+ ./configure --prefix=/usr --localstatedir=/var/lib/locate
+ make
+ make DESTDIR=$PKG_DEST install
+}