#!/bin/sh PKGNAME=steam-launcher SUPPORTEDARCHES="x86_64" DESCRIPTION='Steam Launcher (from the repository if the package is there, or from the official site)' [ "$(epm print info -s)" = "alt" ] && REPOPKGNAME=i586-steam || REPOPKGNAME=steam epm installed $REPOPKGNAME && PKGNAME=$REPOPKGNAME . $(dirname $0)/common.sh if epm status --installable $REPOPKGNAME ; then epm install $REPOPKGNAME || exit else PKGURL="https://cdn.akamai.steamstatic.com/client/installer/steam.deb" epm install $PKGURL || exit if [ "$(epm print info -s)" = "alt" ] ; then # https://bugzilla.altlinux.org/46110 epm install --skip-installed lsof i586-libcurl fi fi epm play i586-fix exit