diff options
author | Jostein Berntsen <jbernts@broadpark.no> | 2014-08-19 23:52:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-20 01:40:58 +0700 |
commit | 3d8706c85bc3baac39aa5acfabfb5b126f096f02 (patch) | |
tree | 71c9c1cdabd6bf9fc4a198fa02dcb33b323ff6e7 /office/notmuch/notmuch.SlackBuild | |
parent | e68a0b7b99ceb5d6a05a333049b29959fcdb4c14 (diff) | |
download | slackbuilds-3d8706c85bc3baac39aa5acfabfb5b126f096f02.tar.gz |
office/notmuch: Updated for version 0.18.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/notmuch/notmuch.SlackBuild')
-rw-r--r-- | office/notmuch/notmuch.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/office/notmuch/notmuch.SlackBuild b/office/notmuch/notmuch.SlackBuild index e9ae768ebd..da1007463a 100644 --- a/office/notmuch/notmuch.SlackBuild +++ b/office/notmuch/notmuch.SlackBuild @@ -5,7 +5,7 @@ # Written by Jostein Berntsen <jbernts@broadpark.no> PRGNAM=notmuch -VERSION=${VERSION:-0.15.2} +VERSION=${VERSION:-0.18} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,10 +46,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz 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" \ CXXFLAGS="$SLKCFLAGS" \ @@ -67,9 +67,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING COPYING-GPL-3 INSTALL NEWS README version \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING COPYING-GPL-3 INSTALL NEWS README version $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |