Add a script for installing yay
This commit is contained in:
parent
23a8ff7e1a
commit
01afe3761d
1 changed files with 8 additions and 0 deletions
8
scripts/Arch/Software/yay/install.sh
Executable file
8
scripts/Arch/Software/yay/install.sh
Executable 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;
|
Loading…
Reference in a new issue