# Description: text based mail client with tokyocabinet and sidebar support # URL: http://www.mutt.org/ # Maintainer: Michael Savage, mike at mikejsavage dot co dot uk # Depends on: ncurses tokyocabinet name=mutt-tokyo-sidebar version=1.5.23 release=2 source=(https://bitbucket.org/mutt/mutt/downloads/mutt-$version.tar.gz http://lunar-linux.org/~tchan/mutt/patch-1.5.23.sidebar.20140412.txt) build() { cd mutt-$version # patch to add sidebar support patch -Np1 -i ../patch-1.5.23.sidebar.20140412.txt autoreconf -vfi ./configure --prefix=/usr \ --mandir=/usr/man \ --sysconfdir=/etc \ --disable-pop --disable-imap --disable-smtp \ --without-ssl --without-sasl --without-idn \ --enable-hcache \ --with-tokyocabinet --without-qdbm --without-gdbm \ --with-slang \ --disable-nls make make DESTDIR=$PKG install rm -r $PKG/usr/share/doc rm $PKG/etc/{Muttrc,mime.types}.dist rm $PKG/usr/bin/{flea,muttbug} rm $PKG/usr/man/man1/{flea.1,muttbug.1} rm $PKG/usr/man/man5/{mmdf.5,mbox.5} }