Last active
February 16, 2024 03:52
-
-
Save android10/9c906b5f281e5efcab4b561837c307fa to your computer and use it in GitHub Desktop.
SCRIPT to install Pacaur on Arch Linux: https://wiki.archlinux.org/index.php/AUR_helpers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ATTENTION: Check the Troubleshooting items below if you have problems, you can also visit my website where I wrote about it. | |
# LINK: https://fernandocejas.com/blog/engineering/2020-12-28-install-arch-linux-full-disk-encryption/#aur-helper | |
#!/bin/bash | |
#Make sure the system is up to date. | |
sudo pacman -Syu --noconfirm | |
#Install dependency packages we'll need to build Pacaur on Arch. | |
sudo pacman -S binutils make gcc fakeroot expac yajl git --noconfirm | |
#Create a temporary working directory for installing Pacaur. | |
mkdir -p ~/tmp/pacaur_install | |
cd ~/tmp/pacaur_install | |
#Install pacaur from AUR: Download the files from git and build a .tar.xz file then install it. | |
curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur | |
makepkg -i PKGBUILD --noconfirm | |
sudo pacman -U pacaur*.tar.xz --noconfirm | |
#Now clean up system: deleting temporary directory. | |
rm -r ~/tmp/pacaur_install | |
cd - |
hey @aiky967 I would suggest to use yay
or paru
, pacaur has not been maintained for a while so I would suggest to the other alternatives.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm following your steps. I'm at
makepkg PKGBUILD --skippgpcheck --noconfirm
I got this errorI installed all the dependencies as you said that were missing.