diff options
author | davidovski <david@davidovski.xyz> | 2022-09-10 23:00:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-09-10 23:00:02 +0100 |
commit | 24998e21676efbd0801bb9a56d167eaf273d44d7 (patch) | |
tree | bd5c13247a9e3d25211f41f358718f2d7447a60c /repo/cmatrix | |
parent | c38dfe6188112ca490090966a63faefe5ec7e9a0 (diff) |
Added cmatrix and updated a few
Diffstat (limited to 'repo/cmatrix')
-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 +} + |