From bd3341d40dbf783546693c37fcf2247fb2faa421 Mon Sep 17 00:00:00 2001 From: teknos Date: Thu, 25 Jan 2024 23:14:14 -0600 Subject: [PATCH] sysutils/pfetch: new port Signed-off-by: teknos --- sysutils/pfetch/SCHEMATIC | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 sysutils/pfetch/SCHEMATIC diff --git a/sysutils/pfetch/SCHEMATIC b/sysutils/pfetch/SCHEMATIC new file mode 100644 index 0000000..c80c53b --- /dev/null +++ b/sysutils/pfetch/SCHEMATIC @@ -0,0 +1,19 @@ +#!/bin/sh +name="pfetch" +short_desc="POSIX-compliant sysinfo tool" +desc="Pretty system information tool written in POSIX sh" +category="sysutils" +version="0.6.0" +maintainer="teknosquet@danwin1210.de" +www="https://github.com/dylanaraps/pfetch" +master_site="https://github.com/dylanaraps/pfetch/archive/refs/tags/" +source_name="$version.tar.gz" +license_logic="single" +licenses=("MIT") + +build_process() { + cd "$name-$version" || exit 2 + chmod 0755 "$name" + mkdir -pv "$TAMANDUA_STAGE_DIR"/usr/bin + mv -v "$name" "$TAMANDUA_STAGE_DIR"/usr/bin +}