Include new installation methods (#4)

This commit is contained in:
Erica Marigold 2023-08-14 22:04:18 +05:30 committed by GitHub
parent f79e763899
commit face823604
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,3 @@
import { Callout } from 'nextra/components'
# Installation # Installation
@ -29,7 +28,7 @@ when installing here.
### AUR (Arch User Repository) ### AUR (Arch User Repository)
There are a number of packages available on the AUR: There are a number of packages available on the AUR:
- `lune` - Builds from the latest stable release source. - `lune` - Builds from the latest stable release source.
- `lune-git` - Builds from the latest commit in the repo; unstable. - `lune-git` - Builds from the latest commit in the repo; unstable.
- `lune-bin` - Installs a precompiled binary from GitHub Release artifacts. - `lune-bin` - Installs a precompiled binary from GitHub Release artifacts.
@ -62,19 +61,33 @@ scoop install lune
``` ```
### Homebrew ### Homebrew
MacOS users can use [Homebrew](https://brew.sh) to install lune. [Homebrew](https://brew.sh) is a package manager for MacOS and Linux. Lune has been published to Homebrew Core, so it can be installed with:
To install preinstalled binaries:
```sh copy filename="Bash" ```sh copy filename="Bash"
# Installs latest stable precompiled binary
brew install lune brew install lune
``` ```
***or*** ***or***
To build from source:
```sh copy filename="Bash" ```sh copy filename="Bash"
# Builds from latest stable source
brew install lune --build-from-source brew install lune --build-from-source
``` ```
### APT
APT is a package manager for debian based distributions that uses dpkg to install packages.
Follow the instructions at the unnoficial [lune-packaging](https://github.com/CompeyDev/lune-packaging#apt) to install lune using APT.
<Callout type="warning" emoji="⚠️">
The APT repo is entirely community maintained and is not endorsed by or affiliated with lune.
</Callout>
### AppImage
AppImages are platform independent sandboxed binaries that work out of the box. Go to the [GitHub Actions Page](https://github.com/CompeyDev/lune-packaging/actions/workflows/appimage.yaml), and download the artifact suitable for your architecture from the build artifacts.
</details> </details>
<details> <details>
@ -97,3 +110,4 @@ Congratulations! You've installed Lune and are now ready to write your first scr
[Introduction](./2-introduction/1-hello-lune.md) section. [Introduction](./2-introduction/1-hello-lune.md) section.
- If you want to write Lune scripts specifically for Roblox, check out the - If you want to write Lune scripts specifically for Roblox, check out the
[Roblox](../roblox/1-introduction.md) section. [Roblox](../roblox/1-introduction.md) section.