summarylogtreecommitdiffstats
path: root/setup.sh
blob: 058d262a44c974214a82852feb99138ee35883d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

if ! command -v wget>/dev/null; then
	sudo pacman -S wget
fi

for i in PKGBUILD .gitignore .SRCINFO; do
    if [ -f "$i" ]; then
        rm "$i"
    fi
done

wget https://gitlab.com/neofetch-extended/archpkg/-/raw/main/PKGBUILD
wget https://gitlab.com/neofetch-extended/archpkg/-/raw/main/.gitignore

makepkg --printsrcinfo > .SRCINFO