blob: 02c637680794e1495f038c9e0dca96aa4737d547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
MAKEDEPS=(make )
DEPS=(bash)
PKG_VER=3.7
SOURCE=https://github.com/dylanaraps/neofetch
DESC="A CLI system information tool written in BASH that supports displaying images."
package () {
make DESTDIR=$PKG_DEST install
}
|