fix: makepkg braucht base-devel fuer fakeroot

Auf frischem Arch ist base-devel nicht installiert.
makepkg -si schlaegt fehl: 'fakeroot' not found.
Fix: sudo pacman -S base-devel vor dem ersten makepkg.
This commit is contained in:
2026-05-27 23:26:44 +02:00
parent 382747ba9b
commit 39b7664de5

View File

@@ -276,6 +276,7 @@ install_aur_helper() {
fi
command -v git >/dev/null 2>&1 || sudo_run pacman -S --needed --noconfirm git
sudo_run pacman -S --needed --noconfirm base-devel
local build_dir
build_dir="$(mktemp -d)"