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