summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authordigital-mystik <32280207+digital-mystik@users.noreply.github.com>2022-02-27 03:17:55 +0000
committerGitHub <noreply@github.com>2022-02-27 03:17:55 +0000
commit4946548997133285246ce9a8bfee3ee59c53d106 (patch)
tree6a52a097d3d051a2c223072dfdcf859fc7861dce /README.md
parentd84502737bb0237c4c40f99263fc3771fde78c33 (diff)
Update README.md to include Arch binary repo (#968)
PKGBUILD pulled from the AUR stable release
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index c57f076f..bd29ef2b 100644
--- a/README.md
+++ b/README.md
@@ -63,6 +63,20 @@ pacaur -S nheko # nheko-git
Nheko requires a secret server to run, so you'll need to install and configure a service such as [KDE Wallet](https://wiki.archlinux.org/title/KDE_Wallet) or [GNOME Keyring](https://wiki.archlinux.org/title/GNOME/Keyring) if not provided by your desktop environment.
+Binary releases of the stable builds are available (using [Open Build Service](https://build.opensuse.org/)). To add this [unofficial repository](https://wiki.archlinux.org/title/Unofficial_user_repositories), execute the following block after reviewing the [PKGBUILD and service files](https://build.opensuse.org/package/show/home:digital_mystik:AUR/nheko):
+
+```
+curl -s 'https://download.opensuse.org/repositories/home:/digital_mystik:/AUR/Arch/x86_64/home_digital_mystik_AUR_Arch.key' | sudo pacman-key -a - && sudo pacman-key --lsign-key 4D41B287F3ABC4B8
+echo '
+[home_digital_mystik_AUR_Arch]
+Server = https://download.opensuse.org/repositories/home:/digital_mystik:/AUR/Arch/x86_64/' | sudo tee --append /etc/pacman.conf
+sudo pacman -Syu nheko
+```
+
+This imports the repository's public PGP key and locally signs it, adds the pertinent entry to `/etc/pacman.conf`, and installs nheko after updating the databases/system; one can now treat nheko as a typical package.
+
+To undo these changes, delete the repository entry from `/etc/pacman.conf`, and remove the public signing key with `sudo pacman-key -d 4D41B287F3ABC4B8`.
+
#### Debian (10 and above) / Ubuntu (18.04 and above)
```bash