remove steam from desktop, use lib32 only

This commit is contained in:
AlmAck 2016-04-10 20:31:12 +02:00
parent 8175c07f87
commit f6f06cba9a
3 changed files with 0 additions and 73 deletions

View File

@ -1,6 +0,0 @@
# Valve USB devices
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
# Steam Controller udev write access
KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", TAG+="udev-acl"
# HTC Vive HID Sensor naming and permissioning
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0bb4", ATTRS{idProduct}=="2c87", MODE="0666"

View File

@ -1,49 +0,0 @@
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): AlmAck <gluca86 [at] gmail.com>
# contributor (ccr): blablub <spamalicious.steve@gmail.com>
pkgname=steam
pkgver=1.0.0.52
pkgrel=1
pkgdesc="Installer for the Steam software distribution service"
arch=('x86_64')
url="http://steampowered.com/"
license=('custom')
depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl'
'dbus' 'freetype2' 'gdk-pixbuf2' 'ttf-liberation'
'lib32-sdl' 'lib32-libvorbis' 'lib32-alsa-lib'
'lib32-libgcrypt' 'lib32-nss' 'lib32-openal'
'lib32-gcc-libs' 'lib32-libx11')
optdepends=(
'lib32-mesa: for open source ATI/Intel/Nouveau users'
'lib32-catalyst-utils: for AMD Catalyst users'
'lib32-nvidia-utils-bumblebee: for NVIDIA + Bumblebee users'
'lib32-nvidia-utils: for NVIDIA proprietary blob users'
'lib32-nvidia-304xx-utils: for NVIDIA 304xx series proprietary users')
makedepends=('librsvg')
install=steam.install
source=("http://repo.steampowered.com/$pkgname/pool/$pkgname/s/$pkgname/${pkgname}_$pkgver.tar.gz"
'80-steam-controller-permission.rules')
md5sums=('18fe1e009d229ec2eb28e4e7fa87ebc8'
'58a63062d00daa640dace392bbb7d83d')
package() {
cd "$srcdir/$pkgname"
# Install
make DESTDIR=${pkgdir} install
# Install license
install -Dm644 "$pkgdir/usr/share/doc/steam/steam_install_agreement.txt" "$pkgdir/usr/share/licenses/steam/LICENSE"
# remove steamdeps not needed for chakra linux
rm "$pkgdir/usr/bin/steamdeps"
# install the controller rules
install -Dm644 $srcdir/80-steam-controller-permission.rules $pkgdir/usr/lib/udev/rules.d/80-steam-controller-permission.rules
}

View File

@ -1,18 +0,0 @@
#!/bin/bash
# tputcolors
post_install() {
post_upgrade
}
post_upgrade() {
update-desktop-database -q
echo
echo 'By using this package you accept the Steam license,'
echo 'which has been installed in /usr/share/licenses/steam/LICENSE'
echo 'If you do not accept this license, you must remove the package immediately.'
echo
echo 'Beware that some games need extra libraries, for more info please look our wiki page:'
echo 'http://chakra-project.org/wiki/index.php?title=Steam'
echo
}