1
0
Fork 0

sysutils/pfetch: new port

Signed-off-by: teknos <teknosquet@danwin1210.de>
This commit is contained in:
teknos 2024-01-25 23:14:14 -06:00
parent 242b479d63
commit bd3341d40d
Signed by: teknos
GPG Key ID: A44D692DADA5A39D
1 changed files with 19 additions and 0 deletions

19
sysutils/pfetch/SCHEMATIC Normal file
View File

@ -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
}