diff options
author | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
commit | 873665024ebfaa761ee49b508a79db7178aeb778 (patch) | |
tree | 6cd3b4ce3a9f4b0586ffa48e73a6ba4c8da2db43 /repo/date | |
parent | 4445f6e15185f58dc599390ab74df3ca19b437b7 (diff) |
added gnupg
Diffstat (limited to 'repo/date')
-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/ +} |