From 635f89aa3a2f5c334e7473081da0e7521ab761ea Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:28:39 -0400 Subject: [PATCH] docs(website): add install steps --- website/content/install.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/website/content/install.md b/website/content/install.md index 6d4ff47..6e5f35c 100644 --- a/website/content/install.md +++ b/website/content/install.md @@ -1,4 +1,30 @@ --- layout: page --- -soon +# Github Prebuilt Binaries +The easiest and best way to get Hilbish is directly from Github. +For official stable releases, check out the latest [Github release.](https://github.com/Rosettea/Hilbish/releases/latest) + +# Linux Repositories +Hilbish is packaged in a *few* repositories for some distros. + +## Arch Linux (AUR) +Hilbihs is on the AUR. Setup an AUR helper, and install. +Example with yay: + +``` +yay -S hilbish +``` + +Or, from master branch: +``` +yay -S hilbish-git +``` + +## Alpine Linux +Hilbish is currentlty in the testing/edge repository for Alpine. +Follow the steps [here](https://wiki.alpinelinux.org/wiki/Enable_Community_Repository) +(Using testing repositories) and install: +``` +apk install hilbish +```