Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelsonaloysio/AUR_bash
Bash script to interact with the Arch User Repository (AUR)
https://github.com/nelsonaloysio/AUR_bash
Last synced: 3 months ago
JSON representation
Bash script to interact with the Arch User Repository (AUR)
- Host: GitHub
- URL: https://github.com/nelsonaloysio/AUR_bash
- Owner: nelsonaloysio
- Created: 2019-06-08T16:51:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-20T00:45:55.000Z (over 1 year ago)
- Last Synced: 2024-04-10T09:51:44.983Z (7 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - nelsonaloysio/AUR_bash - Bash script to interact with the Arch User Repository (AUR) (Shell)
README
AUR_bash
---A simple script in Bash to interact with the Arch User Repository (AUR).
Arguments follow default **pacman** conventions:
```
usage: aur {option} [package]options:
-S, --sync install selected package from AUR
-Su, --update update installed packages from AUR
-Sy, --refresh check for new package versions in AUR
-Sw, --download clone repository files from AUR only
-Ss, --search search for packages matching name
-Sc, -Scc, --clean remove uninstalled packages
-R, --remove remove a package and delete files
-Q, -Qq, --query check local installed packages
-F, --find find and list packages in AUR
-w, --web open AUR package page on web browser
```Build package dependencies are installed from Arch repositories and then uninstalled.
### Requirements
Requires **package-query** from AUR:
> https://aur.archlinux.org/packages/package-query/In order to install it, execute:
> $ ./aur.sh -S package-queryAlso requires **jq** from *community* repositories.
### Current limitations
* Only installs missing packages from Arch repos with **makepkg**.
* Only accepts a single `package` parameter for now due to lazy arg parsing. ^^"
___
If you liked this, also take a look at: [packages](https://gist.github.com/nelsonaloysio/019313a217d90d9848a3d6d264bdc315) (gist).