You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
893 B
23 lines
893 B
#!/bin/bash |
|
# |
|
################################################################################################################## |
|
# Written to be used on 64 bits computers |
|
# Author : Erik Dubois |
|
# Website : http://www.erikdubois.be |
|
################################################################################################################## |
|
################################################################################################################## |
|
# |
|
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. |
|
# |
|
################################################################################################################## |
|
|
|
sudo pacman -S base-devel --noconfirm --needed |
|
|
|
source="https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=yay-bin" |
|
folder="alci-yay-bin" |
|
name="PKGBUILD" |
|
|
|
mkdir /tmp/$folder |
|
wget $source -O /tmp/$folder/$name |
|
cd /tmp/$folder |
|
makepkg -i
|
|
|