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/minicom/minicom.xibuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 repo/minicom/minicom.xibuild (limited to 'repo/minicom/minicom.xibuild') diff --git a/repo/minicom/minicom.xibuild b/repo/minicom/minicom.xibuild new file mode 100644 index 0000000..2c59cae --- /dev/null +++ b/repo/minicom/minicom.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="minicom" +DESC="menu driven communications program for terminals" + +MAKEDEPS="ncurses gettext linux-headers" + +PKG_VER=2.8 +SOURCE="https://salsa.debian.org/minicom-team/minicom/-/archive/$PKG_VER/minicom-$PKG_VER.tar.gz" + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} + -- cgit v1.2.1