aboutsummaryrefslogtreecommitdiff
path: root/utils/install_pacaur
blob: 4c483571ce65ae25c02e37dae08fdd012a7e68e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# vim: ft=sh

# Installs pacaur
# This expect base and base-devel to be installed
set -e

# Make sure that we have wget
sudo pacman -S wget
# Download pacaur tar
wget https://aur.archlinux.org/cgit/aur.git/snapshot/pacaur.tar.gz
# Download cower (pacaur dependency)
wget https://aur.archlinux.org/cgit/aur.git/snapshot/cower.tar.gz

tar -xzf cower.tar.gz
cd cower
makepkg -cis
cd ..
rm -rf cower cower.tar.gz
tar -xzf pacaur.tar.gz
cd pacaur
makepkg -cis
cd ..
rm -rf pacaur pacaur.tar.gz