Last active
January 14, 2017 16:15
-
-
Save Leeo97one/8fe85b86e9dc0b24ae8c7343259e52d1 to your computer and use it in GitHub Desktop.
Installer Pacaur
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installation des paquets requis | |
sudo pacman -S --needed base-devel | |
# Création d'un dossier | |
mkdir builds && cd builds | |
# Téléchargement des paquets | |
curl -LO https://aur.archlinux.org/cgit/aur.git/snapshot/cower.tar.gz | |
curl -LO https://aur.archlinux.org/cgit/aur.git/snapshot/pacaur.tar.gz | |
# Extraction des paquets | |
tar -xvf cower.tar.gz | |
tar -xvf pacaur.tar.gz | |
# Installation des paquets | |
gpg --recv-keys --keyserver hkp://pgp.mit.edu 1EB2638FF56C0C53 | |
cd cower && makepkg -sic | |
cd ../pacaur && makepkg -sic | |
# Nettoyage | |
cd ../.. && rm -rv builds | |
# Fin | |
echo Terminé ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment