9 lines
205 B
Bash
9 lines
205 B
Bash
|
#!/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;
|