evolution-packages/srcpkgs/neofetch/template

24 lines
530 B
Bash
Raw Normal View History

2023-08-05 21:19:04 +01:00
#!/bin/sh
pkgname=neofetch
version=7.1.0
2023-09-11 07:36:25 +01:00
revision=7
2023-08-05 21:19:04 +01:00
short_desc="Simple system information script (not my software)"
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
homepage="https://codeberg.org/EvolutionOS/neofetch"
license="MIT"
makedepends="make git"
depends="bash"
do_build() {
echo "Building..."
# Not needed
}
do_install() {
echo "Installing..."
git clone --depth=1 https://codeberg.org/EvolutionOS/neofetch.git
cd neofetch
mkdir -p ${DESTDIR}/usr/
make PREFIX=${DESTDIR}/usr/ install
}