20 lines
539 B
Bash
20 lines
539 B
Bash
#!/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
|
|
}
|