tamtam.sh 405 Bytes
Newer Older
1 2 3
#!/bin/sh

PKGNAME=tamtam-app
4
DESCRIPTION="TamTam messenger from the official site"
5

6
. $(dirname $0)/common.sh
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


arch="$($DISTRVENDOR --debian-arch)"
case "$arch" in
    amd64)
        ;;
    i386)
        arch=i686
        ;;
    *)
        fatal "Debian $arch arch is not supported"
        ;;
esac

# epm uses eget to download * names
epm install "https://download.tamtam.chat/latest/TamTam-$arch.deb"