diff options
author | Guillermo Bonvehi <gbonvehi@gmail.com> | 2015-04-16 23:49:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-04-17 00:38:50 +0700 |
commit | 520c2afee60119726ebb51c686847589675dd74b (patch) | |
tree | 13ea1fc232f5ffb895f72de02441c89e0488882e /network/pidgin-otr/pidgin-otr.SlackBuild | |
parent | cc303b95d421c213756b959a034120e9650bba85 (diff) | |
download | slackbuilds-520c2afee60119726ebb51c686847589675dd74b.tar.gz |
network/pidgin-otr: Updated for version 4.0.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/pidgin-otr/pidgin-otr.SlackBuild')
-rw-r--r-- | network/pidgin-otr/pidgin-otr.SlackBuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/network/pidgin-otr/pidgin-otr.SlackBuild b/network/pidgin-otr/pidgin-otr.SlackBuild index ac3d60fea9..55b07b818a 100644 --- a/network/pidgin-otr/pidgin-otr.SlackBuild +++ b/network/pidgin-otr/pidgin-otr.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for pidgin-otr -# Copyright 2007-2013 by Guillermo Bonvehi (gbonvehi@gmail.com) +# Copyright 2007-2015 by Guillermo Bonvehi (gbonvehi@gmail.com) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=pidgin-otr -VERSION=4.0.0 +VERSION=${VERSION:-4.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -67,7 +67,7 @@ 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 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -82,16 +82,12 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -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/po -cp -a \ - README AUTHORS COPYING ChangeLog INSTALL NEWS \ - $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - po/README po/ChangeLog \ - $PKG/usr/doc/$PRGNAM-$VERSION/po +cp -a README AUTHORS COPYING ChangeLog INSTALL NEWS $PKG/usr/doc/$PRGNAM-$VERSION +cp -a po/README po/ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION/po cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |