From 3f66b40e92f0b896243b96baec0f12286f090cda Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 2 Sep 2025 22:30:04 +0300 Subject: [PATCH] aur-sync: add page (#17942) --- pages/linux/aur-sync.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/linux/aur-sync.md diff --git a/pages/linux/aur-sync.md b/pages/linux/aur-sync.md new file mode 100644 index 0000000000..91fac85cc0 --- /dev/null +++ b/pages/linux/aur-sync.md @@ -0,0 +1,25 @@ +# aur sync + +> Download and build AUR packages automatically. +> Note: A local repository needs to be defined in `/etc/pacman.conf` and `vifm` needs to be installed for this to fully function. +> More information: . + +- Download one or more packages and their dependencies from the AUR, build them, and add them to a local repository: + +`aur sync {{package1 package2 ...}}` + +- Upgrade local repository packages: + +`aur sync {{[-u|--upgrades]}}` + +- Clean build files after install: + +`aur sync {{[-C|--clean]}} {{package}}` + +- Install a package without viewing changes in Vim and do not confirm dependency installation: + +`aur sync --noview {{[-n|--noconfirm]}} {{package}}` + +- Ignore specific packages when upgrading: + +`aur sync {{[-u|--upgrades]}} --ignore {{package1,package2,...}}`