diff options
Diffstat (limited to 'network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild')
-rw-r--r-- | network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild b/network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild index 838d9f44ac..a73d131ef2 100644 --- a/network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild +++ b/network/pidgin-opensteamworks/pidgin-opensteamworks.SlackBuild @@ -1,13 +1,13 @@ #!/bin/sh -# Slackware build script for pidgin-nudge +# Slackware build script for pidgin-opensteamworks # Written by Ronny Schmatzler <schmatzler@hirnschwund.net> # Based on http://slackbuilds.org/template.SlackBuild PRGNAM=pidgin-opensteamworks -VERSION=${VERSION:-1.5} +VERSION=${VERSION:-1.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -40,23 +40,28 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -mkdir $PRGNAM-$VERSION -cd $PRGNAM-$VERSION/ -tar xvjf $CWD/steam-mobile-$VERSION.tar.bz2 +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/$VERSION.tar.gz +cd $PRGNAM-$VERSION/steam-mobile chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; make +# Copy the library mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/purple-2/ cp libsteam.so $PKG/usr/lib${LIBDIRSUFFIX}/purple-2/ -mkdir -p $PKG/usr/share/pixmaps/pidgin/protocols -unzip $CWD/icons.zip -d $PKG/usr/share/pixmaps/pidgin/protocols +# Copy the images +mkdir -p $PKG/usr/share/pixmaps/pidgin/protocols/16 +mkdir -p $PKG/usr/share/pixmaps/pidgin/protocols/22 +mkdir -p $PKG/usr/share/pixmaps/pidgin/protocols/48 +cp steam16.png $PKG/usr/share/pixmaps/pidgin/protocols/16/steam.png +cp steam22.png $PKG/usr/share/pixmaps/pidgin/protocols/22/steam.png +cp steam48.png $PKG/usr/share/pixmaps/pidgin/protocols/48/steam.png 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 |