diff options
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 |