diff options
author | Jostein Berntsen <jbernts@broadpark.no> | 2012-04-15 11:18:41 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-04-15 11:18:41 -0500 |
commit | 32aa63932afd4ec700349652983091262db93e80 (patch) | |
tree | 72d4310adb69044360794c5a815a3ac01f766460 /office/mu/mu.SlackBuild | |
parent | 9663947bad3542f091c4497faefa6a1706971e26 (diff) | |
download | slackbuilds-32aa63932afd4ec700349652983091262db93e80.tar.gz |
office/mu: Updated for version 0.9.8.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/mu/mu.SlackBuild')
-rw-r--r-- | office/mu/mu.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/office/mu/mu.SlackBuild b/office/mu/mu.SlackBuild index f11458b8fa..cf344cfb83 100644 --- a/office/mu/mu.SlackBuild +++ b/office/mu/mu.SlackBuild @@ -5,7 +5,7 @@ # Written by Jostein Berntsen <jbernts@broadpark.no> PRGNAM=mu -VERSION=${VERSION:-0.9.6} +VERSION=${VERSION:-0.9.8.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -56,6 +56,7 @@ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --mandir=/usr/man \ + --infodir=/usr/info \ --build=$ARCH-slackware-linux make V=1 @@ -67,6 +68,9 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +rm -f $PKG/usr/info/dir +gzip -9 $PKG/usr/info/* + find $PKG -depth -type d -empty -delete || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |