16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
# Description: A command-line system information tool written in bash 3.2+
|
|
# URL: https://github.com/dylanaraps/neofetch
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: bash
|
|
|
|
name=neofetch
|
|
version=7.0.0
|
|
release=1
|
|
source=(https://github.com/dylanaraps/neofetch/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
mkdir -p $PKG/usr/bin
|
|
cp neofetch $PKG/usr/bin
|
|
}
|