Add a script for installing yay

This commit is contained in:
Manuel Thalmann 2023-04-03 22:59:06 +02:00
parent 79c1d0429a
commit 4bf6840834

View file

@ -0,0 +1,8 @@
#!/bin/bash
sudo pacman -S --needed git base-devel
contextRoot="$(mktemp -d)";
git clone https://aur.archlinux.org/yay.git "$contextRoot";
pushd "$contextRoot" > /dev/null;
makepkg -si;
popd > /dev/null;