Install SimpleX Chat from the GitHub repository

This commit is contained in:
Ohad Livne 2026-04-10 23:57:19 +03:00
parent 4bd68f4614
commit ce0be360e5
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -0,0 +1,20 @@
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
package=simplex-chat
repo=simplex-chat/simplex-chat
sc_resource() {
echo "simplex-chat-ubuntu-24_04-x86_64"
}
install_sc() {
tempfile="$(mktemp)" && \
cat - > "${tempfile}" && \
chmod 550 "${tempfile}" && \
mv "${tempfile}" "$(systemd-path user-binaries)"/simplex-chat
}
github_update "${package}" "${repo}" sc_resource install_sc