Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # This script boot straps Pacaur for Arch Linux on a fresh install.
- # It should be run as a normal user with sudo privileges
- cd /tmp
- curl -o aur.sh http://aur.sh
- chmod +x aur.sh
- # Since the aur.sh script seems not to reference the pacman-key database,
- # we need to add the GPG key for cower into the user's GPG database.
- # #DirtyHack2016
- gpg --recv-key 1EB2638FF56C0C53
- ./aur.sh cower
- sudo pacman -U /tmp/cower/cower*.tar.gz
- ./aur.sh pacaur
- sudo pacman -U /tmp/pacaur/pacaur*.tar.xz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement