You are not logged in.
Pages: 1
I'm writing a customized arch linux ISO with the aid of the ArchISO code. When I try and create a custom repository to install package-query and yaourt. Package-query works fine for some reason but every time it tries to install yaourt I get,
:: File /var/cache/pacman/pkg/yaourt-1.5-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (checksum)).
I've installed it to the local system directly without any errors through just using "pacman -U yaourt-1.5-1-any.pkg.tar.xz". For both the package-query and yaourt I downloaded from the AUR and built everything until I got a pkg.tar.xz then put it into the repository using repo-add
repo-add /home/zedth2/lcl_repo/x86_64/aur.db.tar.xz /home/zedth2/lcl_repo/x86_64/yaourt-1.5-1-any.pkg.tar.xz
#From the pacman.conf in archiso root
[aur]
Server = file:///home/zedth2/lcl_repo/$arch
SigLevel = Never
So then I tried just adding the things into customize_airootfs.sh
dirmngr </dev/null
pacman-key --init
pacman-key --populate archlinux
pacman -Syyuu --noconfirm
pacman-key --refresh-keys
pacman -U --noconfirm /home/zedth2/package-query-1.5-2-${arch}.pkg.tar.xz
pacman -U /home/zedth2/yaourt-1.5-1-any.pkg.tar.xz --noconfirm
sudo -u zedth2 yaourt -S --noconfirm dmenu-git
sudo -u zedth2 yaourt -S --noconfirm compton
sudo -u zedth2 yaourt -S --noconfirm dropbox-cli
sudo -u zedth2 yaourt -S --noconfirm geany-git
sudo -u zedth2 yaourt -S --noconfirm geany-plugins-git
sudo -u zedth2 yaourt -S --noconfirm geany-themes-git
sudo -u zedth2 yaourt -S --noconfirm lxappearance-obconf-git
sudo -u zedth2 yaourt -S --noconfirm obconf-git
sudo -u zedth2 yaourt -S --noconfirm obkey-git
sudo -u zedth2 yaourt -S --noconfirm obmenu-generator
sudo -u zedth2 yaourt -S --noconfirm octopi
sudo -u zedth2 yaourt -S --noconfirm openbox-git
sudo -u zedth2 yaourt -S --noconfirm qsynergy
But that gives me a problem with the GPG stuff. I'm working on reproducing the error now but this takes time. Is there anyway of turning off the i686 build besides modifying the build script?
Offline
Pages: 1