[arch-commits] Commit in steam/repos (3 files)

Giancarlo Razzolini grazzolini at archlinux.org
Mon Aug 24 15:46:41 UTC 2020


    Date: Monday, August 24, 2020 @ 15:46:41
  Author: grazzolini
Revision: 687618

archrelease: copy trunk to multilib-testing-x86_64

Added:
  steam/repos/multilib-testing-x86_64/
  steam/repos/multilib-testing-x86_64/PKGBUILD
    (from rev 687617, steam/trunk/PKGBUILD)
  steam/repos/multilib-testing-x86_64/steam-runtime.sh
    (from rev 687617, steam/trunk/steam-runtime.sh)

------------------+
 PKGBUILD         |   63 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 steam-runtime.sh |    2 +
 2 files changed, 65 insertions(+)

Copied: steam/repos/multilib-testing-x86_64/PKGBUILD (from rev 687617, steam/trunk/PKGBUILD)
===================================================================
--- multilib-testing-x86_64/PKGBUILD	                        (rev 0)
+++ multilib-testing-x86_64/PKGBUILD	2020-08-24 15:46:41 UTC (rev 687618)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Giancarlo Razzolini <grazzolini at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: K900 <k0009000 at gmail.com>
+
+pkgname=steam
+pkgver=1.0.0.66
+pkgrel=1
+pkgdesc="Valve's digital software delivery system"
+url='https://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
+         'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 'usbutils'
+         'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'
+                'lib32-alsa-plugins' 'lib32-libgpg-error'
+                'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
+optdepends=('steam-native-runtime: steam native runtime support')
+source=(https://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}{.tar.gz,.dsc}
+        steam-runtime.sh)
+sha512sums=('1871dba51229cbc220e19df3f8af06ea6c0d71e1bbdea39ef66c4f5d0ce29486974cb1cdb7f5e78f6a0e2f69d256f4c2034848d3efd68b088635eb11a2ae96ba'
+            '7c4efae9fe5fa3cb14b9344a30aa8daec995bff502d1b80d5f6ee479f11be6993c5b8870da1ec14bd8f979d8d161a45fa0eeb628eccf60eeb40a4221356e13e9'
+            '5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
+b2sums=('d4a247b31f1474908a7e1ebdd7bb9443608bd7617e53344b9b03e498fe9cd55e406a1ef7ef3eba6754d9c19218ca975f3d1e18a727f5a05d21467f276c8854fa'
+        '210b7a332f2aee8df5efd632dc90086e2a2470a12ad6fa1ecb0cd34cc039f016ede891f9d0bb15245c054afa3cca46871842c521b1e924c196a1c02689f8d077'
+        'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
+validpgpkeys=('BA1816EF8E75005FCF5E27A1F24AEA9FB05498B7') # linux at steampowered.com
+
+prepare() {
+  cd ${pkgname}-launcher
+  # apply roundups for udev rules
+  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i subprojects/steam-devices/60-steam-vr.rules
+
+  # separated runtime/native desktop files
+  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
+  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
+}
+
+package() {
+  cd ${pkgname}-launcher
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 755 "${srcdir}/steam-runtime.sh" "${pkgdir}/usr/bin/steam-runtime"
+  install -d "${pkgdir}/usr/lib/steam"
+  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
+  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
+
+  install -Dm 644 COPYING steam_subscriber_agreement.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # blank steamdeps because apt-get
+  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
+
+  install -Dm 644 subprojects/steam-devices/60-steam-input.rules \
+    "${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
+  install -Dm 644 subprojects/steam-devices/60-steam-vr.rules \
+    "${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
+}
+
+# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-testing-x86_64/steam-runtime.sh (from rev 687617, steam/trunk/steam-runtime.sh)
===================================================================
--- multilib-testing-x86_64/steam-runtime.sh	                        (rev 0)
+++ multilib-testing-x86_64/steam-runtime.sh	2020-08-24 15:46:41 UTC (rev 687618)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/lib/steam/steam "$@"



More information about the arch-commits mailing list