blob: 87d653dae3aae656b6d4ad2e3736db648953d3b7 (
plain)
1 # Description: A command-line system information tool written in bash 3.2+
2 # URL: https://github.com/dylanaraps/neofetch
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: bash
5
6 name=neofetch
7 version=7.1.0
8 release=1
9 source=(https://github.com/dylanaraps/neofetch/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 install -Dt $PKG/usr/bin $name-$version/neofetch
13 }
|