diff options
Diffstat (limited to 'repo/lolcat/lolcat.xibuild')
-rw-r--r-- | repo/lolcat/lolcat.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/lolcat/lolcat.xibuild b/repo/lolcat/lolcat.xibuild new file mode 100644 index 0000000..1b2d987 --- /dev/null +++ b/repo/lolcat/lolcat.xibuild @@ -0,0 +1,19 @@ +#!/bin/sh + +NAME="lolcat" +DESC="High-performance implementation of lolcat" + +MAKEDEPS="" + +PKG_VER=1.2 +SOURCE="https://github.com/jaseg/lolcat/archive/v$PKG_VER.tar.gz" + +build() { + make +} + +package() { + mkdir -p "$PKG_DEST/usr/bin" + make DESTDIR="$PKG_DEST/usr/bin" install +} + |