PortValhalla/scripts/Arch/Software/yay/install.sh

9 lines
217 B
Bash
Raw Normal View History

2023-04-03 20:59:06 +00:00
#!/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 --noconfirm -si;
2023-04-03 20:59:06 +00:00
popd > /dev/null;