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

9 lines
205 B
Bash
Executable file

#!/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;