https://github.com/torxed/archinstall-aur
Archinstall plugin to handle AUR packages
https://github.com/torxed/archinstall-aur
Last synced: about 1 month ago
JSON representation
Archinstall plugin to handle AUR packages
- Host: GitHub
- URL: https://github.com/torxed/archinstall-aur
- Owner: Torxed
- License: gpl-3.0
- Created: 2021-04-29T11:51:41.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-13T09:21:10.000Z (almost 3 years ago)
- Last Synced: 2025-03-26T21:23:18.895Z (about 2 months ago)
- Language: Python
- Size: 32.2 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# archinstall-aur
Archinstall plugin concept to handle AUR packages.⚠️ There is no support offered for AUR packages, but if you have questions about this or other plugins, or surrounding archinstall - ping me on the archinstall discord server and we can bounce ideas.
---
🚨 Important: This is not something that will ever be shipped with archinstall or the archinstall guided installer. This repo serves as an example to show how plugins can be created to enrich archinstall with external functions that experienced users can optionally install and optionally use.
# Usage
Either put it as a parameter via `archinstall --plugin https://raw.githubusercontent.com/Torxed/archinstall-aur/main/archinstall_aur/__init__.py`.
After which you can add AUR packages to the `"Additional packages"` question in the menu.Or via a `--conf` file:
```json
{
"plugin" : "https://raw.githubusercontent.com/Torxed/archinstall-aur/main/archinstall_aur/__init__.py",
"packages" : [
"nano",
"wget",
"yay-bin"
]
}
```