diff options
Diffstat (limited to 'repo/system/sed')
-rw-r--r-- | repo/system/sed/sed.xibuild | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/system/sed/sed.xibuild b/repo/system/sed/sed.xibuild new file mode 100644 index 0000000..ddb7102 --- /dev/null +++ b/repo/system/sed/sed.xibuild @@ -0,0 +1,17 @@ +#!/bin/sh + +MAKEDEPS="make sort" +DEPS="musl acl attr" + +PKG_VER=0.8.6 +SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz +DESC="stream editor from toybox" + +build () { + ./configure + make sed +} + +package () { + install -Dm755 sed $PKG_DEST/usr/bin/ +} |