Advertisement
TheAtomicAss

Bootstrap pacaur

Feb 18th, 2017
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # This script boot straps Pacaur for Arch Linux on a fresh install.
  4.  
  5. # It should be run as a normal user with sudo privileges
  6.  
  7. cd /tmp
  8. curl -o aur.sh http://aur.sh
  9. chmod +x aur.sh
  10.  
  11. # Since the aur.sh script seems not to reference the pacman-key database,
  12. # we need to add the GPG key for cower into the user's GPG database.
  13.  
  14. #  #DirtyHack2016
  15.  
  16. gpg --recv-key 1EB2638FF56C0C53
  17. ./aur.sh cower
  18. sudo pacman -U /tmp/cower/cower*.tar.gz
  19. ./aur.sh pacaur
  20. sudo pacman -U /tmp/pacaur/pacaur*.tar.xz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement