blob: ccbb189debdbaca482a95f00bda4c0a330176938 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Andrew Manison <amanison@anselsystems.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mutt
pkgver=1.13.5
pkgrel=0
pkgdesc="Small and very powerful text-mode email client"
url="http://www.mutt.org"
arch="all"
license="GPL-2.0-or-later"
makedepends="cyrus-sasl-dev gdbm-dev gettext-dev gpgme-dev
libidn-dev ncurses-dev openssl-dev perl"
options="suid !check"
subpackages="$pkgname-doc $pkgname-lang"
source="https://bitbucket.org/mutt/mutt/downloads/mutt-$pkgver.tar.gz"
build() {
ISPELL=/usr/bin/hunspell \
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-imap \
--enable-pop \
--enable-smtp \
--enable-hcache \
--enable-gpgme \
--enable-sidebar \
--with-curses \
--with-mailpath=/var/mail \
--with-docdir=/usr/share/doc/$pkgname \
--without-included-gettext \
--with-ssl \
--with-sasl
make
}
package() {
make DESTDIR="$pkgdir" install
rm -f "$pkgdir"/etc/*.dist \
"$pkgdir"/etc/mime.types
# Don't tamper with the global configuration file.
# Many options set in the global config cannot be
# overwritten in the users configuration file.
# Example: Resetting colors isn't possible.
install -Dm644 contrib/gpg.rc \
"$pkgdir"/etc/Muttrc.gpg.dist
}
sha512sums="f2ea863626e5dad4854c98a1797faa97c9f14fb5161c590e88ee02afbdde7f48493bd2cce6109f9839501cf38aa238dc804f4c98f17ac97c68b48cb0bc0e5b4a mutt-1.13.5.tar.gz"
|