diff options
Diffstat (limited to 'repo/findutils')
-rw-r--r-- | repo/findutils/findutils.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/findutils/findutils.xibuild b/repo/findutils/findutils.xibuild new file mode 100644 index 0000000..1dbc9d3 --- /dev/null +++ b/repo/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 +} |