diff options
Diffstat (limited to 'desktop/notification-daemon/notification-daemon.SlackBuild')
-rw-r--r-- | desktop/notification-daemon/notification-daemon.SlackBuild | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/desktop/notification-daemon/notification-daemon.SlackBuild b/desktop/notification-daemon/notification-daemon.SlackBuild index e86169e8c438c..70d441a412598 100644 --- a/desktop/notification-daemon/notification-daemon.SlackBuild +++ b/desktop/notification-daemon/notification-daemon.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for notification-daemon # Copyright 2010, 2012 Binh Nguyen <binhvng@gmail.com> -# Copyright 2014 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2014-2016 Larry Hajali <larryhaja[at]gmail[dot]com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=notification-daemon -VERSION=${VERSION:-3.18.1} +VERSION=${VERSION:-3.18.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -65,16 +65,19 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.xz cd $PRGNAM-$VERSION 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; CFLAGS="$SLKCFLAGS" \ ./configure \ + --sysconfdir=/etc \ --prefix=/usr \ - --disable-static \ + --enable-static=no \ --enable-shared \ + --enable-debug=no \ + --disable-rpath \ --disable-silent-rules \ --build=$ARCH-slackware-linux @@ -90,7 +93,6 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |