diff --git a/pages/getting-started/1-installation.mdx b/pages/getting-started/1-installation.mdx index 94076ee..000434d 100644 --- a/pages/getting-started/1-installation.mdx +++ b/pages/getting-started/1-installation.mdx @@ -1,4 +1,3 @@ -import { Callout } from 'nextra/components' # Installation @@ -29,7 +28,7 @@ when installing here. ### AUR (Arch User Repository) 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-bin` - Installs a precompiled binary from GitHub Release artifacts. @@ -62,19 +61,33 @@ scoop install lune ``` ### 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" +# Installs latest stable precompiled binary brew install lune ``` ***or*** -To build from source: ```sh copy filename="Bash" +# Builds from latest stable 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. + + + The APT repo is entirely community maintained and is not endorsed by or affiliated with lune. + + + + +### 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.
@@ -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. - If you want to write Lune scripts specifically for Roblox, check out the [Roblox](../roblox/1-introduction.md) section. +