Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Archlinux/Garuda Linux install/build package instruction #2034

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/linux.md
@@ -1,5 +1,37 @@
# Linux distribution specific dependencies

## ArchLinux/Garuda Linux

Make sure to have at least one [AUR helper](https://wiki.archlinux.org/title/AUR_helpers) installed.

You can get the AUR helper `aura`, `paru` or any other AUR helper of your liking (see link above).

To build [`franz`](https://aur.archlinux.org/packages/franz/), from the AUR (ArchLinux User Repository) :

```bash
$ sudo aura -Axc franz
```

or

```bash
$ paru -S franz
```

If any issue happens during the build, [comment on the AUR package webpage first](https://aur.archlinux.org/packages/franz/), do not open an issue on GitHub unless you were told to do so explicitly.

You can also install a binary already built of `franz` to avoid having installing any of its dependencies, [`franz-bin`](https://aur.archlinux.org/packages/franz-bin/).

```bash
$ sudo aura -Axc franz-bin
```

or

```bash
$ sudo paru -Axc franz-bin
```

## Debian/Ubuntu
```bash
$ apt install libx11-dev libxext-dev libxss-dev libxkbfile-dev
Expand Down