diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-11-30 04:21:06 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-11-30 08:59:44 +0100 |
commit | 6aa2cc8350712ea9d90cb4905aae2b1dd3a68038 (patch) | |
tree | 57fb587a08b1892a7bb3e72c5b1a644b4893d10f /source/n/mutt | |
parent | 7284497dcf1ed750a9703553209d899a8c111149 (diff) | |
download | current-6aa2cc8350712ea9d90cb4905aae2b1dd3a68038.tar.gz current-6aa2cc8350712ea9d90cb4905aae2b1dd3a68038.tar.xz |
Fri Nov 30 04:21:06 UTC 201820181130042106
n/mutt-1.11.0-x86_64-2.txz: Rebuilt.
Put info file in /usr/info and compress it.
Don't include /usr/info/dir.
Thanks to Edward Trumbo.
After upgrading this package, you'll need to reinstall the texinfo package
to restore the missing /usr/info/dir file.
n/wget-1.20-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/n/mutt')
-rwxr-xr-x | source/n/mutt/mutt.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source/n/mutt/mutt.SlackBuild b/source/n/mutt/mutt.SlackBuild index 01293eb8c..e46238918 100755 --- a/source/n/mutt/mutt.SlackBuild +++ b/source/n/mutt/mutt.SlackBuild @@ -23,7 +23,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=mutt VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -74,6 +74,7 @@ CFLAGS="$SLKCFLAGS" \ --docdir=/usr/doc/mutt-$VERSION \ --with-docdir=/usr/doc/mutt-$VERSION \ --sysconfdir=/etc/mutt \ + --infodir=/usr/info \ --with-mailpath=/var/spool/mail \ --enable-pop \ --enable-imap \ @@ -110,6 +111,14 @@ if [ -d $PKG/usr/man ]; then ) fi +# Compress info files, if any: +if [ -d $PKG/usr/info ]; then + ( cd $PKG/usr/info + rm -f dir + gzip -9 * + ) +fi + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh |