blob: a450f78050c81f9390c289ed642ddb72107393ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
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
}
|