summaryrefslogtreecommitdiff
path: root/repo/cmatrix
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-09-10 23:00:02 +0100
committerdavidovski <david@davidovski.xyz>2022-09-10 23:00:02 +0100
commit24998e21676efbd0801bb9a56d167eaf273d44d7 (patch)
treebd5c13247a9e3d25211f41f358718f2d7447a60c /repo/cmatrix
parentc38dfe6188112ca490090966a63faefe5ec7e9a0 (diff)
Added cmatrix and updated a few
Diffstat (limited to 'repo/cmatrix')
-rw-r--r--repo/cmatrix/cmatrix.xibuild27
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
+}
+