Commit fea5fd2f authored by Vitaly Lipatov's avatar Vitaly Lipatov

add epm play steam (but hidden from play list)

parent 661e4f09
#!/bin/sh
# TODO: common place
fatal()
{
echo "FATAL: $*" >&2
exit 1
}
PKGNAME=steam-launcher
if [ "$1" = "--remove" ] ; then
epm remove $PKGNAME
exit
fi
[ "$1" != "--run" ] && exit #echo "Install Steam for Linux from the official site" && exit
[ "$($DISTRVENDOR -a)" != "x86_64" ] && echo "Only x86_64 is supported" && exit 1
epm install "https://cdn.akamai.steamstatic.com/client/installer/steam.deb"
#!/bin/sh -x
# It will be run with two args: buildroot spec
BUILDROOT="$1"
SPEC="$2"
PRODUCT=steam-launcher
subst "s|.*/etc/apt.*||" $SPEC
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