blob: c201a68050d55f49b3fb94a2559117926c53752d (
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.0.0
8 release=1
9 source=(https://github.com/dylanaraps/neofetch/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 mkdir -p $PKG/usr/bin
14 cp neofetch $PKG/usr/bin
15 }
|