1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Revert "Switch from pacaur to yaourt, again"

This reverts commit 88c191665c.
This commit is contained in:
2016-05-21 12:50:55 +01:00
parent 2a21f10c87
commit 554e75f054
7 changed files with 40 additions and 93 deletions

25
scripts/install-pacaur Executable file
View File

@ -0,0 +1,25 @@
if [[ $EUID -eq 0 ]]; then
echo "You cannot run makepkg as root."
echo "Please run this script again as a non-elevated user"
exit 1
fi
# Install dependencies
sudo pacman -S --asdeps git curl yajl gnupg
mkdir cower && cd cower
# Get PGP keys so it builds
gpg --recv-keys --keyserver hkp://pgp.mit.edu 1EB2638FF56C0C53
# Fetch, build and install cower
curl https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower > PKGBUILD
makepkg -sri
# Fetch, build and install pacaur
cd .. && mkdir pacaur && cd pacaur
curl https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur > PKGBUILD
makepkg -sri
cd ..
rm -rf cower pacaur

View File

@ -1,23 +0,0 @@
#if [[ $EUID -eq 0 ]]; then
# echo "You cannot run makepkg as root."
# echo "Please run this script again as a non-elevated user"
# exit 1
#fi
# Install git, yajl dependencies
sudo pacman -S --asdeps yajl git
cd /tmp
git clone https://aur.archlinux.org/package-query.git
cd package-query
sudo -u nobody makepkg -sr
sudo pacman -U `ls | grep package-query.*\.tar\.xz'
cd ..
git clone https://aur.archlinux.org/yaourt.git
cd yaourt
sudo -u nobody makepkg -sr
sudo pacman -U `ls | grep yaourt.*\.tar\.xz'
cd ..
rm -rf package-query yaourt