aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-12-27 12:56:22 +0100
committerKarel Kočí <cynerd@email.cz>2016-12-27 12:56:22 +0100
commitce7a67094a300188643511a7794bb555fdce28d1 (patch)
treee1559ecac0989e693734db3058d29b68dc9adbae /utils
parent345e70a10386e10404a21bfd37056ab7eea84861 (diff)
downloadmyconfigs-ce7a67094a300188643511a7794bb555fdce28d1.tar.gz
myconfigs-ce7a67094a300188643511a7794bb555fdce28d1.tar.bz2
myconfigs-ce7a67094a300188643511a7794bb555fdce28d1.zip
Fill some holes in pacaur install script
Diffstat (limited to 'utils')
-rwxr-xr-xutils/install_pacaur11
1 files changed, 8 insertions, 3 deletions
diff --git a/utils/install_pacaur b/utils/install_pacaur
index 1a1e9ee..0add3b2 100755
--- a/utils/install_pacaur
+++ b/utils/install_pacaur
@@ -10,19 +10,24 @@ if pacaur --version 2>&1 1>/dev/null; then
fi
# Make sure that we have wget
-sudo pacman -S wget
+sudo pacman --needed -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
+# Receive cower gpg key
+gpg --keyserver pgp.mit.edu --recv-keys 1EB2638FF56C0C53
+
+# Install cower
tar -xzf cower.tar.gz
cd cower
-makepkg -cis
+makepkg -Acis
cd ..
rm -rf cower cower.tar.gz
+# Install pacaur
tar -xzf pacaur.tar.gz
cd pacaur
-makepkg -cis
+makepkg -Acis
cd ..
rm -rf pacaur pacaur.tar.gz