From 5f82b318ab9b5ed91b5abb8c9f36563ac6d67cb5 Mon Sep 17 00:00:00 2001 From: Lahfa Samy Date: Fri, 11 Jun 2021 13:54:35 +0200 Subject: [PATCH 1/3] [ci skip] Add ArchLinux AUR install instructions --- docs/linux.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/linux.md b/docs/linux.md index 43ffa313b..232e37009 100644 --- a/docs/linux.md +++ b/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`, 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 From 2d772c60a292e7d6b103a818cec0952fc35b0344 Mon Sep 17 00:00:00 2001 From: Lahfa Samy Date: Fri, 11 Jun 2021 13:56:23 +0200 Subject: [PATCH 2/3] [ci skip] Add a missing $ for shell prompt --- docs/linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linux.md b/docs/linux.md index 232e37009..b948b96df 100644 --- a/docs/linux.md +++ b/docs/linux.md @@ -15,7 +15,7 @@ $ sudo aura -Axc franz or ```bash -paru -S franz +$ 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. From a723eb60e7314d2609838ba8de569a5dbd62b85d Mon Sep 17 00:00:00 2001 From: Lahfa Samy Date: Fri, 11 Jun 2021 13:57:11 +0200 Subject: [PATCH 3/3] [ci skip] Add link to franz AUR package --- docs/linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linux.md b/docs/linux.md index b948b96df..4d80b5ee1 100644 --- a/docs/linux.md +++ b/docs/linux.md @@ -6,7 +6,7 @@ Make sure to have at least one [AUR helper](https://wiki.archlinux.org/title/AUR You can get the AUR helper `aura`, `paru` or any other AUR helper of your liking (see link above). -To build `franz`, from the AUR (ArchLinux User Repository) : +To build [`franz`](https://aur.archlinux.org/packages/franz/), from the AUR (ArchLinux User Repository) : ```bash $ sudo aura -Axc franz