diff options
author | Ryan P.C. McQuen <ryanpcmcquen@gmail.com> | 2014-05-24 09:45:43 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-05-24 09:45:43 +0700 |
commit | 5dbb69ac669d529d4e345dff9504f18bc1ac5ddf (patch) | |
tree | 6b067faa5a4ed006b3e12eea81b774604cb8a646 /network/skype4pidgin/skype4pidgin.SlackBuild | |
parent | efd6e7570a0aa41d77abb19edd8455bce522ab8f (diff) |
network/skype4pidgin: Updated for version r664 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/skype4pidgin/skype4pidgin.SlackBuild')
-rw-r--r-- | network/skype4pidgin/skype4pidgin.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/network/skype4pidgin/skype4pidgin.SlackBuild b/network/skype4pidgin/skype4pidgin.SlackBuild index eefd0aea427a3..e68567a56beb4 100644 --- a/network/skype4pidgin/skype4pidgin.SlackBuild +++ b/network/skype4pidgin/skype4pidgin.SlackBuild @@ -3,6 +3,7 @@ # Slackware build script for skype4pidgin # Copyright (c) 2013 Roberto Metere. All rights reserved. +# Copyright 2014 Ryan P.C. McQuen, WA, ryan.q@linux.com # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are @@ -24,7 +25,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=skype4pidgin -VERSION=${VERSION:-r654} +VERSION=${VERSION:-r664} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -68,7 +69,7 @@ tar -xvf ../data.tar.gz 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 \ + -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 {} \; @@ -95,7 +96,7 @@ else install -m 664 usr/lib/purple-2/libskype${LIBDIRSUFFIX}.so $PKG/usr/lib${LIBDIRSUFFIX}/purple-2/ fi -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |