-
-
Save k0nsl/ec9a6dcd9a2c231d283cb58f8aa1508c to your computer and use it in GitHub Desktop.
A simple shell script to quickly / easily install "pacaur" on archlinux
This file contains hidden or 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
| #!/bin/sh | |
| # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT | |
| mkdir -p /tmp/pacaur_install | |
| cd /tmp/pacaur_install | |
| # INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA | |
| sudo pacman -S expac yajl --noconfirm | |
| # INSTALL DEPENDENCY "cower" FROM AUR | |
| curl -o PKGBUILD https://aur.archlinux.org/packages/co/cower/PKGBUILD | |
| makepkg PKGBUILD --skippgpcheck | |
| sudo pacman -U cower*.tar.xz --noconfirm | |
| # INSTALL "pacaur" FROM AUR | |
| curl -o PKGBUILD https://aur.archlinux.org/packages/pa/pacaur/PKGBUILD | |
| makepkg PKGBUILD | |
| sudo pacman -U pacaur*.tar.xz --noconfirm | |
| # CLEAN THE TMP-WORKING-DIR | |
| cd ~ | |
| rm -r /tmp/pacaur_install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment