summaryrefslogtreecommitdiff
path: root/repo/system/findutils/findutils.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/findutils/findutils.xibuild')
-rw-r--r--repo/system/findutils/findutils.xibuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/system/findutils/findutils.xibuild b/repo/system/findutils/findutils.xibuild
new file mode 100644
index 0000000..1dbc9d3
--- /dev/null
+++ b/repo/system/findutils/findutils.xibuild
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+MAKEDEPS="make sort"
+DEPS="musl sh"
+
+PKG_VER=0.8.6
+SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz
+DESC="toybox utilities to locate files"
+
+build () {
+ make defconfig
+ make xargs
+ make find
+}
+
+package () {
+ install -Dm755 find $PKG_DEST/usr/bin/find
+ install -Dm755 xargs $PKG_DEST/usr/bin/xargs
+}