diff options
author | Karel Kočí <cynerd@email.cz> | 2017-10-13 13:39:32 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-10-13 13:39:32 +0200 |
commit | a24065603cf94af1910a98b97ac2bf188085e065 (patch) | |
tree | b6232afe8734903163ae57a695ca4a357fce6442 /utils/install_pacaur | |
parent | f322efcb46049a0560b5a53745f3a9928e64d5db (diff) | |
download | myconfigs-a24065603cf94af1910a98b97ac2bf188085e065.tar.gz myconfigs-a24065603cf94af1910a98b97ac2bf188085e065.tar.bz2 myconfigs-a24065603cf94af1910a98b97ac2bf188085e065.zip |
Drop archlinux (I am on gentoo now oh yeh)
Diffstat (limited to 'utils/install_pacaur')
-rwxr-xr-x | utils/install_pacaur | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/utils/install_pacaur b/utils/install_pacaur deleted file mode 100755 index 0cabd46..0000000 --- a/utils/install_pacaur +++ /dev/null @@ -1,35 +0,0 @@ -# vim: ft=sh - -# Installs pacaur -# This expect base and base-devel to be installed -set -e - -if pacaur --version 2>&1 1>/dev/null; then - echo "Pacaur seems to be installed already" - exit 0 -fi - -# Make sure that we have 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 -Acis -cd .. -rm -rf cower cower.tar.gz -# Install pacaur -tar -xzf pacaur.tar.gz -cd pacaur -makepkg -Acis -cd .. -rm -rf pacaur pacaur.tar.gz -# Set cower to be just an dependency -pacman -D --asdeps cower |