Commit 56f46677 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play: add ktalk support

parent 0ee87d56
#!/bin/sh
PKGNAME=ktalk
DESCRIPTION="Контур.Толк (ktalk) from the official site"
. $(dirname $0)/common.sh
[ "$($DISTRVENDOR -a)" != "x86_64" ] && echo "Only x86_64 is supported" && exit 1
URL="https://app.ktalk.ru/system/dist/download/linux"
# hack due ОШИБКА: невозможно проверить сертификат app.ktalk.ru, выпущенный «CN=RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US»
PKGDIR="$(mktemp -d)"
cd $PKGDIR || fatal
$EGET --no-check-certificate "$URL"
epm install *.AppImage
RES=$?
rm -rf $PKGDIR
exit $RES
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment