mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
games/steam: Updated for version 1.0.0.61. New maintainer
Signed-off-by: Christoph Willing <chris.willing@linux.com>
This commit is contained in:
parent
232121f768
commit
df85a3fa57
5 changed files with 62 additions and 14 deletions
|
@ -4,4 +4,7 @@ Steam provides the user with installation and automatic updating of games on
|
|||
multiple computers, and community features such as friends lists and groups,
|
||||
cloud saving, and in-game voice and chat functionality.
|
||||
|
||||
Recomended Packages: flashplayer-plugin, libtxc_dxtn
|
||||
Depending on the game being played and hardware being used, some games may
|
||||
benefit by inclusion of flashplayer-plugin and btxc_dxtn packages from SBo.
|
||||
|
||||
A multilib installation is required to run steam.
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
# Update the desktop database:
|
||||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
|
||||
fi
|
||||
|
||||
# Update hicolor theme cache:
|
||||
if [ -d usr/share/icons/hicolor ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
|
||||
fi
|
||||
fi
|
||||
|
||||
# Update the mime database:
|
||||
if [ -x usr/bin/update-mime-database ]; then
|
||||
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
# Reload the udev rules to include our newly installed steam rules
|
||||
if [ -x /sbin/udevadm ]; then
|
||||
/sbin/udevadm control --reload
|
||||
fi
|
||||
|
|
|
@ -11,9 +11,9 @@ steam:
|
|||
steam: Steam is an internet-based digital distribution, digital rights
|
||||
steam: management, multiplayer, and social networking platform developed by
|
||||
steam: Valve Corporation.
|
||||
steam:
|
||||
steam: Steam provides the user with installation and automatic updating of
|
||||
steam: Steam provides the user with installation and automatic updating of
|
||||
steam: games on multiple computers, and community features such as friends
|
||||
steam: lists and groups, cloud saving, and in-game voice and chat
|
||||
steam: functionality.
|
||||
steam:
|
||||
steam: Project URL: http://store.steampowered.com
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
# Slackware build script for steam
|
||||
|
||||
# Copyright Talos Thoren
|
||||
# Copyright 2016 Talos Thoren
|
||||
# All rights reserved.
|
||||
# Copyright 2019 Christoph Willing, Brisbane, Australia
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,13 +25,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=steam
|
||||
VERSION=${VERSION:-1.0.0.52}
|
||||
VERSION=${VERSION:-1.0.0.61}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -40,6 +42,20 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -48,6 +64,7 @@ cd $TMP
|
|||
rm -rf $PRGNAM\_$VERSION
|
||||
tar xvf $CWD/$PRGNAM\_$VERSION.tar.gz
|
||||
cd $PRGNAM
|
||||
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -56,6 +73,7 @@ find -L . \
|
|||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
make install DESTDIR=$PKG
|
||||
sed -i -e "s/distribution.\\\n/distribution.\\\n Actually, don't worry - this is Slackware\!\\\n\\\n/" $PKG/usr/bin/steamdeps
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
@ -64,10 +82,19 @@ mv $PKG/usr/share/man/ $PKG/usr/
|
|||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/lib/udev/rules.d
|
||||
install -p -m 0644 lib/udev/rules.d/*.rules $PKG/lib/udev/rules.d/
|
||||
|
||||
# alienBOB's trick for unfound system apps
|
||||
sed -i -e '\/usr\/bin\/env\ bash/{N;s#$#\nexport PATH="/usr/lib/steam/local:$PATH"\n#}' $PKG/usr/bin/steam
|
||||
mkdir -p $PKG/usr/lib/steam/local
|
||||
ln -sf /sbin/pidof $PKG/usr/lib/steam/local/pidof
|
||||
ln -sf /sbin/lspci $PKG/usr/lib/steam/local/lspci
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv $PKG/usr/share/doc/steam/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
rm -rf $PKG/usr/share/doc
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="steam"
|
||||
VERSION="1.0.0.52"
|
||||
VERSION="1.0.0.61"
|
||||
HOMEPAGE="http://store.steampowered.com/"
|
||||
DOWNLOAD="http://repo.steampowered.com/steam/archive/precise/steam_1.0.0.52.tar.gz"
|
||||
MD5SUM="18fe1e009d229ec2eb28e4e7fa87ebc8"
|
||||
DOWNLOAD="http://repo.steampowered.com/steam/archive/precise/steam_1.0.0.61.tar.gz"
|
||||
MD5SUM="a5d3e33a736a4abdcfe112add79af836"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="OpenAL"
|
||||
MAINTAINER="Talos Thoren"
|
||||
EMAIL="talosthoren@gmail.com"
|
||||
MAINTAINER="Christoph Willing"
|
||||
EMAIL="chris.willing@linux.com"
|
||||
|
|
Loading…
Reference in a new issue