20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
# Tanım: BASH'da yazılmış görüntüleri destekleyen bir CLI sistem bilgisi aracı.
|
||
# URL: https://github.com/dylanaraps/
|
||
# Paketçi: Cihan Alkan
|
||
# Gerekler:
|
||
|
||
name=neofetch
|
||
version=3.2.0
|
||
release=1
|
||
|
||
source=(https://github.com/dylanaraps/neofetch/archive/$version.tar.gz
|
||
linux)
|
||
|
||
|
||
derle() {
|
||
cd $name-$version
|
||
cp -f $SRC/linux $SRC/$name-$version/ascii/distro/
|
||
make DESTDIR=$PKG install
|
||
}
|
||
|