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