24 lines
530 B
Bash
24 lines
530 B
Bash
|
#!/bin/sh
|
||
|
pkgname=neofetch
|
||
|
version=7.1.0
|
||
|
revision=5
|
||
|
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
|
||
|
}
|