diff options
Diffstat (limited to 'misc/gramps/gramps.SlackBuild')
-rw-r--r-- | misc/gramps/gramps.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/gramps/gramps.SlackBuild b/misc/gramps/gramps.SlackBuild index 4852ed7a5d..399ee56418 100644 --- a/misc/gramps/gramps.SlackBuild +++ b/misc/gramps/gramps.SlackBuild @@ -5,7 +5,7 @@ # Written by Bill Kirkpatrick <bkirkp@gmail.com> PRGNAM=gramps -VERSION=${VERSION:-3.1.1} +VERSION=${VERSION:-3.1.3} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -59,7 +59,7 @@ make install DESTDIR=$PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ xargs strip --strip-unneeded 2> /dev/null || true find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null + xargs strip --strip-unneeded 2> /dev/null || true ) ( cd $PKG/usr/man @@ -76,4 +76,4 @@ 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.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |