diff options
Diffstat (limited to 'doc/getting-started/installation.md')
-rw-r--r-- | doc/getting-started/installation.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/getting-started/installation.md b/doc/getting-started/installation.md new file mode 100644 index 0000000..7496b16 --- /dev/null +++ b/doc/getting-started/installation.md @@ -0,0 +1,24 @@ +# Installation + +## From the AUR + +This is the recommended option. It will also install a systemd service running +in its own user. + +```sh +git clone https://aur.archlinux.org/jellything-git.git +cd jellything-git +makepkg -si +``` + +## From source + +```sh +git clone --recursive https://codeberg.org/metamuffin/jellything.git +cd jellything +cargo build --release +# Global installation +cp target/release/{jellything,jellytool} /usr/local/bin +# User installation +cp target/release/{jellything,jellytool} ~/.local/bin +```
\ No newline at end of file |