blob: c481eecd5c6e5e1ef68f20f2d5b8ed83033ab16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $Id: PKGBUILD 50055 2009-08-19 01:49:30Z thayer $
# Maintainer: tobias [tobias [at] archlinux.org]
pkgname=mutt
pkgver=1.5.20
pkgrel=2
pkgdesc="A small but very powerful text-based mail client"
arch=(i686 x86_64)
license=('GPL')
url="http://www.mutt.org/"
depends=('slang' 'openssl>=0.9.8e' 'gdbm' 'mime-types' 'zlib' 'libsasl' 'gpgme')
makedepends=('gnupg')
install=${pkgname}.install
source=(ftp://ftp.mutt.org/mutt/devel/${pkgname}-${pkgver}.tar.gz
mutt-unmailbox.patch)
url="http://www.mutt.org/"
md5sums=('027cdd9959203de0c3c64149a7ee351c'
'fa8e03a49a2fa7b294dc8237d928cdb7')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
# patch a segfault bug in 1.5.20 -- remove for next release
patch -p1 < ${srcdir}/mutt-unmailbox.patch || return 1
#patch -Np1 -i ../mutt-unmailbox.patch || exit 1
./configure --prefix=/usr --sysconfdir=/etc \
--enable-pop --enable-imap --enable-smtp \
--with-sasl --with-ssl=/usr --without-idn \
--enable-hcache --enable-pgp --enable-inodesort \
--enable-compressed --with-regex \
--enable-gpgme --with-slang=/usr
make || return 1
make DESTDIR=${pkgdir} install
rm -f ${pkgdir}/usr/bin/{flea,muttbug}
rm -f ${pkgdir}/usr/share/man/man1/{flea,muttbug}.1
rm -f ${pkgdir}/etc/mime.types*
install -Dm644 contrib/gpg.rc ${pkgdir}/etc/Muttrc.gpg.dist
}
|