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