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

PKGNAME=tamtam-app
4
SUPPORTEDARCHES="x86_64 x86"
5
VERSION="$2"
6
DESCRIPTION="TamTam messenger from the official site"
7

8
. $(dirname $0)/common.sh
9

10
warn_version_is_not_supported
11

12
arch="$(epm print info --debian-arch)"
13 14 15 16 17 18 19 20 21 22 23
case "$arch" in
    amd64)
        ;;
    i386)
        arch=i686
        ;;
    *)
        fatal "Debian $arch arch is not supported"
        ;;
esac

24 25 26
PKGURL="https://download.tamtam.chat/latest/TamTam-$arch.deb"

install_pkgurl