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