diff options
Diffstat (limited to 'repo/cmatrix/cmatrix.xibuild')
-rw-r--r-- | repo/cmatrix/cmatrix.xibuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/cmatrix/cmatrix.xibuild b/repo/cmatrix/cmatrix.xibuild new file mode 100644 index 0000000..3d2befb --- /dev/null +++ b/repo/cmatrix/cmatrix.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="cmatrix" +DESC="Terminal based 'The Matrix' like implementation" + +MAKEDEPS=" ncurses kbd autoconf automake" + +PKG_VER=2.0 +SOURCE="https://github.com/abishekvashok/cmatrix/archive/v$PKG_VER.tar.gz" + +prepare() { + autoreconf -i +} + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} + |