Erik Dubois
3 years ago
3 changed files with 27 additions and 6 deletions
@ -1,6 +1,6 @@ |
|||||||
We recommend you get the ASA or ArcoLinux Spices Application. |
We recommend you get the ASA or ArcoLinux Spices Application. |
||||||
|
|
||||||
We are sure that is always working and maintained. |
We are sure that it will always work in the future. |
||||||
|
|
||||||
We use the tool to turn any Arch Linux system into an ArcoLinux system. |
We use the tool to turn any Arch Linux system into an ArcoLinux system. |
||||||
|
|
@ -0,0 +1,23 @@ |
|||||||
|
#!/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 |
Loading…
Reference in new issue