1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:53:50 +02:00

aur-sync: add page (#17942)

This commit is contained in:
Managor 2025-09-02 22:30:04 +03:00 committed by GitHub
parent 23e7aef736
commit 3f66b40e92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
pages/linux/aur-sync.md Normal file
View file

@ -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: <https://github.com/aurutils/aurutils>.
- 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,...}}`