From c072b29c63c37c3d56015038344913fc86fbe769 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 28 Jul 2023 22:29:09 +0530 Subject: [PATCH] Update AUR Packages Section (#1) --- pages/getting-started/1-installation.mdx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/pages/getting-started/1-installation.mdx b/pages/getting-started/1-installation.mdx index e726547..4da64dc 100644 --- a/pages/getting-started/1-installation.mdx +++ b/pages/getting-started/1-installation.mdx @@ -1,3 +1,5 @@ +import { Callout } from 'nextra/components' + # Installation The preferred way of installing Lune is using [Aftman](https://github.com/lpghatguy/aftman). @@ -24,18 +26,29 @@ when installing here.
Community-maintained -### ArchLinux User Repository +### AUR (Arch User Repository) +There are a number of packages available on the AUR: + +- `lune` - Builds from the latest stable release source. +- `lune-git` - Builds from the latest commit in the repo; unstable. +- `lune-bin` - Installs a precompiled binary from GitHub Release artifacts. + +These can be installed with your favourite AUR manager as such: ```sh copy filename="Bash" -paru -S lune +paru -S [PACKAGE_NAME] ``` ***or*** ```sh copy filename="Bash" -yay -S lune +yay -S [PACKAGE_NAME] ``` + + Only one of these AUR packages must be installed at a time in order to prevent conflicts. + +