# $Id: PKGBUILD 185574 2013-05-15 08:05:34Z bpiotrowski $ # Contributor: tobias [tobias [at] archlinux.org] # Maintainer: Gaetan Bisson pkgname=mutt pkgver=1.5.21 pkgrel=9 pkgdesc='Small but very powerful text-based mail client' url='http://www.mutt.org/' license=('GPL') backup=('etc/Muttrc') arch=('i686' 'x86_64') optdepends=('smtp-forwarder: to send mail') depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') source=("ftp://ftp.mutt.org/mutt/devel/${pkgname}-${pkgver}.tar.gz" 'pop-cachedir.patch' 'crypt-gpgme.patch') sha1sums=('a8475f2618ce5d5d33bff85c0affdf21ab1d76b9' '32dbcafe05e4a919fd00c6a1064c6ecd205e6eb1' '8cf0d4278aab1d162ab7f847f1b917327d630d98') install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -i ../pop-cachedir.patch # FS#31536 patch -p1 -i ../crypt-gpgme.patch # FS#31735 ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --enable-gpgme \ --enable-pop \ --enable-imap \ --enable-smtp \ --enable-hcache \ --with-curses=/usr \ --with-regex \ --with-gss=/usr \ --with-ssl=/usr \ --with-sasl \ --with-idn \ make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install rm "${pkgdir}"/usr/bin/{flea,muttbug} rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1 rm "${pkgdir}"/etc/mime.types{,.dist} install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist }