You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 9, 2019. It is now read-only.
pacman(8) has a caching feature, and the ability to "download only". See the folllowing excerpts from the man page:
--cachedir <dir>
Specify an alternative package cache location (a typical default
is /var/cache/pacman/pkg). Multiple cache directories can be specified,
and they are tried in the order they are passed to pacman. NOTE: This
is an absolute path, and the root path is not automatically prepended.
-w, --downloadonly
Retrieve all packages from the server, but do not install/upgrade anything.
This proposes to add the above functionality into yaourt. Specifically:
The ability to cache fully built packages in a specified directory
The ability to install cached packages from a specified directory
The ability to download only (only build, skipping install) within the caching directory
Currently, yaourt does not support these operations, but comes close with --export.
The text was updated successfully, but these errors were encountered:
The second feature would be nice to have for AUR caching, specifically for offline package installation. Other AUR package managers, such as pacaur have this feature.
Hello,
What about EXPORT=1 and EXPORTDIR settings in yaourtrc ? It's not perfect, but it can store source and compiled packages (based on makepkg PKGDEST). Or do I miss something ?
pacman
(8) has a caching feature, and the ability to "download only". See the folllowing excerpts from the man page:This proposes to add the above functionality into
yaourt
. Specifically:Currently,
yaourt
does not support these operations, but comes close with--export
.The text was updated successfully, but these errors were encountered: