summaryrefslogtreecommitdiffstats
path: root/steamclient
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2013-02-23 23:00:36 +0000
committer Eric Hameleers <alien@slackware.com>2013-02-23 23:00:36 +0000
commitaf3a8a670e771c176e4ed85eb6b683edfdda433f (patch)
tree79618ab271759d1761d02cfc905f85d5179d806d /steamclient
parent6eb0b64171d85eadd3f2828254e33a00b2e36b28 (diff)
downloadasb-af3a8a670e771c176e4ed85eb6b683edfdda433f.tar.gz
asb-af3a8a670e771c176e4ed85eb6b683edfdda433f.tar.xz
Update to 1.0.0.31
Diffstat (limited to 'steamclient')
-rwxr-xr-xsteamclient/build/steamclient.SlackBuild13
1 files changed, 7 insertions, 6 deletions
diff --git a/steamclient/build/steamclient.SlackBuild b/steamclient/build/steamclient.SlackBuild
index 8039bc7e..5c9985e0 100755
--- a/steamclient/build/steamclient.SlackBuild
+++ b/steamclient/build/steamclient.SlackBuild
@@ -40,6 +40,8 @@
# * Update. No longer in Beta!
# 1.0.0.28-1: 16/feb/2013 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 1.0.0.31-1: 23/feb/2013 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh steamclient.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -47,10 +49,8 @@
#
# -----------------------------------------------------------------------------
-# Set initial variables:
-
PRGNAM=steamclient
-VERSION=${VERSION:-1.0.0.28} # Use "LATEST" to just dowload the latest version.
+VERSION=${VERSION:-1.0.0.31} # Use "LATEST" to just dowload the latest version.
ARCH=i386
BUILD=${BUILD:-1}
TAG=${TAG:-alien}
@@ -135,10 +135,11 @@ tar xf ${SOURCE}
# Version check in case we downloaded the "latest" client:
if [ "$VERSION" = "LATEST" ]; then
echo -n "Changing package version from '$VERSION' to"
- VERSION=$(ls --indicator-style=none | grep steam- | cut -f2 -d-)
+ VERSION=$(head -1 steam*/debian/changelog | cut -d'(' -f2 | cut -d')' -f1)
echo " '$VERSION'."
fi
+mv steam steam-${VERSION} 2>/dev/null
cd steam-${VERSION}
chown -R root:root .
chmod -R u+w,go+r-w,a+X-s .
@@ -150,8 +151,8 @@ install -p -m 755 steamdeps $PKG/usr/bin/
# We don't use apt or dpkg or whatever:
cat << EOT > $PKG/usr/bin/steamdeps
#!/bin/sh
-echo "Check the 'deps' directory where you downloaded this package and install/upgrade the packages you find there."
-echo "If you run multilib, you also have to install/upgrade the packages in the 'deps/multilib' subdirectory."
+echo "Slackware 32-bit: Check the 'deps/<slackwareversion>' directory where you downloaded this package and install/upgrade the packages you find there."
+echo "Slackware 64-bit multilib: Install/upgrade the packages in the 'deps/<slackwareversion>/multilib' subdirectory instead."
echo ""
exit 0
EOT