aboutsummaryrefslogtreecommitdiffstats
path: root/community/mutt/APKBUILD
blob: 8cabbfa2257120d9a303586cd88a0834a19a425e (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Andrew Manison <amanison@anselsystems.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mutt
pkgver=2.2.6
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="elinks
	docbook-xml
	docbook-xsl
	gdbm-dev
	gettext-dev
	gpgme-dev
	libidn2-dev
	libgsasl-dev
	ncurses-dev
	openssl1.1-compat-dev
	perl"
options="!check"
install="$pkgname.post-upgrade"
subpackages="$pkgname-doc $pkgname-lang"
source="https://bitbucket.org/mutt/mutt/downloads/mutt-$pkgver.tar.gz
	"

# secfixes:
#   2.2.3-r0:
#     - CVE-2022-1328
#   2.0.4-r1:
#     - CVE-2021-3181
#   2.0.2-r0:
#     - CVE-2020-28896
#   1.14.4-r0:
#     - CVE-2020-14093

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-gsasl \
		--with-idn2
	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="
07d473b6e6774f3988538e799fcc73ad35efceb5b1a3ee377754332f34db664d40ffa650711c7720ddc5c248e5379bba19fc5fd3dc7418a25305780e25f3b52b  mutt-2.2.6.tar.gz
"