8 lines
205 B
Bash
Executable file
8 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;
|