Commit bac4190f authored by Ivan Mazhukin's avatar Ivan Mazhukin Committed by Vitaly Lipatov

epm play: add tabby (eterbug #18217)

parent 8090022f
#!/bin/sh
PKGNAME=tabby-terminal
SUPPORTEDARCHES="x86_64 aarch64 armhf"
VERSION="$2"
DESCRIPTION='A terminal for a more modern age'
URL="https://github.com/Eugeny/tabby"
. $(dirname $0)/common.sh
case "$(epm print info -a)" in
x86_64)
arch="x64" ;;
aarch64)
arch="arm64" ;;
armhf)
arch="armv7l" ;;
esac
case "$(epm print info -p)" in
rpm)
pkgtype=rpm ;;
deb)
pkgtype=deb ;;
*)
pkgtype=AppImage ;;
esac
if [ "$VERSION" = "*" ] ; then
PKGURL=$(get_github_url "https://github.com/Eugeny/tabby/" "tabby-.$VERSION-linux-$arch.$pkgtype")
else
PKGURL="https://github.com/Eugeny/tabby/releases/download/v$VERSION/tabby-$VERSION-linux-$arch.$pkgtype"
fi
install_pkgurl
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