diff options
Diffstat (limited to 'extra/mutt/PKGBUILD')
-rw-r--r-- | extra/mutt/PKGBUILD | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/extra/mutt/PKGBUILD b/extra/mutt/PKGBUILD index 86a7acdba..6ceef05d2 100644 --- a/extra/mutt/PKGBUILD +++ b/extra/mutt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 185574 2013-05-15 08:05:34Z bpiotrowski $ +# $Id: PKGBUILD 196759 2013-10-18 06:54:09Z bisson $ # Contributor: tobias [tobias [at] archlinux.org] # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=mutt -pkgver=1.5.21 -pkgrel=9 +pkgver=1.5.22 +pkgrel=1 pkgdesc='Small but very powerful text-based mail client' url='http://www.mutt.org/' license=('GPL') @@ -12,19 +12,13 @@ backup=('etc/Muttrc') arch=('i686' 'x86_64' 'mips64el') 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') +source=("ftp://ftp.mutt.org/mutt/devel/${pkgname}-${pkgver}.tar.gz") +sha1sums=('728a114cb3a44df373dbf1292fc34dd8321057dc') 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 \ @@ -47,8 +41,8 @@ package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install + rm "${pkgdir}"/etc/mime.types{,.dist} 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 } |