Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcoplaitano/paura
A simple helper for managing AUR packages.
https://github.com/marcoplaitano/paura
arch-aur arch-package arch-packages aur aur-helper aur-helpers aur-manager aur-package aur-packages package-manager packages-manager
Last synced: about 2 months ago
JSON representation
A simple helper for managing AUR packages.
- Host: GitHub
- URL: https://github.com/marcoplaitano/paura
- Owner: marcoplaitano
- License: mit
- Created: 2023-09-05T11:30:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-22T17:08:38.000Z (5 months ago)
- Last Synced: 2024-07-22T20:45:13.006Z (5 months ago)
- Topics: arch-aur, arch-package, arch-packages, aur, aur-helper, aur-helpers, aur-manager, aur-package, aur-packages, package-manager, packages-manager
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PAURA
A simple helper for managing AUR packages.
## Description
This helper is definitely not the best, there are many others out there, more
famous and with a lot more features to offer.What this script excels at is simplicity. A hundred lines of Bash to
install, update and remove AUR packages on any Arch-based distribution.- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## Installation
Download and give executable permissions:
```shell
curl -o $HOME/.local/bin/paura https://raw.githubusercontent.com/marcoplaitano/paura/main/paura
chmod +x $HOME/.local/bin/paura
```- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## Usage
**Installing** or **updating** a package:
```shell
paura pfetch # or https://aur.archlinux.org/pfetch
```**Removing** a package:
```shell
paura -r pfetch
```**Listing** all installed packages:
```shell
paura -l
```**Updating all** installed packages:
```shell
paura -u
```**Search** for a package:
```shell
paura -s pfetch
```### Options Summary
| Option | Description |
|-----------------------|-------------------------------------------|
| -h, --help | Show help guide and exit. |
| **PKG** | Install or update package named **PKG**. |
| -l, --list | List all installed packages. |
| -r, --remove **PKG** | Remove package named **PKG**. |
| -s, --search **PKG** | Search package named **PKG**. |
| -u, --update | Update all installed packages. |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## Author
Marco Plaitano
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## License
Distributed under the [MIT] license.
[MIT]:
LICENSE
"Repository file"