2006-02-23 15:26:10 +00:00
|
|
|
# Description: Text-based email client that sucks less
|
|
|
|
# URL: http://www.mutt.org
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2017-10-31 17:32:48 +01:59
|
|
|
# Depends on: gdbm openssl zlib
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=mutt
|
2019-03-13 08:32:36 +01:00
|
|
|
version=1.11.4
|
2016-07-26 14:34:36 +02:00
|
|
|
release=1
|
2015-09-03 17:28:59 +02:00
|
|
|
source=(https://bitbucket.org/mutt/mutt/downloads/$name-$version.tar.gz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2007-04-10 16:51:38 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-docdir=/usr/share/mutt \
|
2007-02-25 11:04:04 +01:00
|
|
|
--with-mailpath=/var/spool/mail \
|
2006-02-23 15:26:10 +00:00
|
|
|
--enable-pop \
|
|
|
|
--enable-imap \
|
|
|
|
--with-ssl \
|
|
|
|
--enable-hcache \
|
2007-04-10 16:51:38 +02:00
|
|
|
--disable-nls \
|
2016-08-18 17:32:59 +02:00
|
|
|
--enable-sidebar \
|
2016-07-26 14:34:36 +02:00
|
|
|
# --enable-gpgme \
|
|
|
|
# --enable-smtp --with-sasl
|
2007-04-10 16:51:38 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2007-04-10 16:51:38 +02:00
|
|
|
|
2008-05-21 10:21:46 +02:00
|
|
|
find $PKG/usr/share/mutt/* ! -name manual.txt -delete
|
2006-08-22 13:20:46 +00:00
|
|
|
rm $PKG/usr/etc/{Muttrc,mime.types}.dist
|
2018-11-27 16:24:57 +01:00
|
|
|
rm -r $PKG/usr/share/info
|
2016-05-30 18:13:57 +02:00
|
|
|
rm $PKG/usr/share/man/man5/{mmdf.5,mbox.5}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|