19 lines
413 B
Bash
19 lines
413 B
Bash
NAME="neofetch"
|
|
DESC="Command-line system information tool written in bash 3.2+"
|
|
VERSION="7.1.0-matter4"
|
|
|
|
FILES=("https://git.matterlinux.xyz/Matter/neofetch/archive/${VERSION}.tar.gz")
|
|
HASHES=("0a9fcb3164816877e31a1ffb4ac6abc2fa1708988e6292c0c4720ab23be4ebdf")
|
|
|
|
DEPENDS=("bash")
|
|
BUILD=()
|
|
|
|
PACKAGE() {
|
|
tar xf "${VERSION}.tar.gz"
|
|
cd "${NAME}"
|
|
|
|
make DESTDIR="${ROOTDIR}" install
|
|
|
|
cd .. && rm -rf "${NAME}"
|
|
}
|