You are not logged in.
Hi,
Currently I have a cron job that does this:
pacman -Syuw --noconfirmThis downloads all packages and put it in the cache in the background, this way when a run an upgrade I just have to validate.
I would like to have the same for AUR packages. Is anyone aware of a AUR helper with a "download+build" only option ?
Offline
It looks like some of the AUR helpers might be able to do it, since a couple appear to have a build-only flag.
Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository
Offline
for pkg in $(pacman -Qqm); do
cower -d $pkg && cd /your/builddir/$pkg && makepkg
done"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
pacaur (which uses cower) supports a -d flag to download only, and a -m flag to download and build. The -d flag will pull down dependencies. I'm quite happy with pacaur+cower as a day to day solution, $0.02.
EDIT: sorry I meant the -m flag pulls down deps -- to do it with the -d flag you have to specify it twice. </bourbon>
Last edited by TE (2014-12-13 00:53:36)
Offline