sunshine.sh 476 Bytes
Newer Older
Maxim Slipenko's avatar
Maxim Slipenko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/bin/sh

PKGNAME=sunshine
SUPPORTEDARCHES="x86_64"
VERSION="$2"
DESCRIPTION="Self-hosted game stream host for Moonlight"
URL="https://app.lizardbyte.dev/Sunshine"

. $(dirname $0)/common.sh

if [ "$VERSION" = "*" ] ; then
	VERSION="$(curl -s https://api.github.com/repos/LizardByte/Sunshine/releases/latest | grep -oP '"tag_name": "\K(.*?)(?=")' | sed 's/G//g')"
fi

PKGURL=https://github.com/LizardByte/Sunshine/releases/download/$VERSION/sunshine.AppImage

install_pkgurl