blob: 7496b16ad336fd2dadc95d25a336000eab618c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
```
|