03528049ac
closes #6844
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# Template file for 'steam'
|
|
pkgname=steam
|
|
version=1.0.0.59
|
|
revision=1
|
|
wrksrc=steam
|
|
only_for_archs="i686 x86_64"
|
|
depends="zenity xz curl dbus freetype gdk-pixbuf hicolor-icon-theme desktop-file-utils liberation-fonts-ttf"
|
|
short_desc="Digital distribution client bootstrap package - Valve's steam client"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="Proprietary license"
|
|
homepage="https://steampowered.com/"
|
|
distfiles="http://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${version}.tar.gz"
|
|
checksum=a5080db949793fc4eb543293a95a24131441a96ccc8f5deebdecd7257cfcd99f
|
|
repository=nonfree
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
# Link license
|
|
vmkdir usr/share/licenses/steam
|
|
ln -sfr ${DESTDIR}/usr/share/doc/steam/steam_install_agreement.txt \
|
|
${DESTDIR}/usr/share/licenses/steam/LICENSE
|
|
|
|
# Ignore steamdeps.
|
|
ln -sf /bin/true ${DESTDIR}/usr/bin/steamdeps
|
|
|
|
# Steam Controller support: need read-write access to
|
|
# Valve-owned input event device nodes.
|
|
# See https://bugs.launchpad.net/ubuntu/+source/steam/+bug/1498655
|
|
vinstall ${FILESDIR}/99-steam-controller-perms.rules 644 usr/lib/udev/rules.d
|
|
|
|
# Device support for Steam-related hardware (e.g. controllers over Steam Link)
|
|
vinstall ${FILESDIR}/60-steam-input.rules 644 usr/lib/udev/rules.d
|
|
vinstall ${FILESDIR}/60-steam-vr.rules 644 usr/lib/udev/rules.d
|
|
}
|