From 24998e21676efbd0801bb9a56d167eaf273d44d7 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 10 Sep 2022 23:00:02 +0100 Subject: Added cmatrix and updated a few --- repo/cmatrix/cmatrix.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/cmatrix/cmatrix.xibuild (limited to 'repo/cmatrix') 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 +} + -- cgit v1.2.1