This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
2023-08-05 21:19:04 +01:00
|
|
|
#!/bin/sh
|
|
|
|
pkgname=neofetch
|
|
|
|
version=7.1.0
|
2023-10-06 00:26:32 +01:00
|
|
|
revision=8
|
2023-08-05 21:19:04 +01:00
|
|
|
short_desc="Simple system information script (not my software)"
|
|
|
|
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
|
2023-10-29 15:34:13 +00:00
|
|
|
homepage="https://centrifuge.hectabit.org/evolutionos/neofetch"
|
2023-08-05 21:19:04 +01:00
|
|
|
license="MIT"
|
|
|
|
makedepends="make git"
|
|
|
|
depends="bash"
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
echo "Building..."
|
|
|
|
# Not needed
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
echo "Installing..."
|
2023-10-29 15:34:13 +00:00
|
|
|
git clone --depth=1 https://centrifuge.hectabit.org/evolutionos/neofetch.git
|
2023-08-05 21:19:04 +01:00
|
|
|
cd neofetch
|
|
|
|
mkdir -p ${DESTDIR}/usr/
|
|
|
|
make PREFIX=${DESTDIR}/usr/ install
|
|
|
|
}
|