aboutsummaryrefslogtreecommitdiffstats
path: root/main/fetchmail/APKBUILD
blob: 957ed29f79896ca6b37778b19534111809d172c3 (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
# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fetchmail
pkgver=6.4.4
pkgrel=0
pkgdesc="A remote-mail retrieval and forwarding utility"
url="https://www.fetchmail.info/"
arch="all"
license="GPL-2.0-or-later AND Public Domain"
pkgusers="fetchmail"
pkggroups="fetchmail"
makedepends="openssl-dev python3"
install="fetchmail.pre-install"
subpackages="
	$pkgname-doc
	$pkgname-openrc
	fetchmailconf::noarch
	"
source="https://downloads.sourceforge.net/fetchmail/fetchmail-$pkgver.tar.xz
	$pkgname.initd
	$pkgname.confd
	"

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--with-ssl \
		--disable-nls \
		--enable-POP3 \
		--enable-IMAP \
		--without-hesiod \
		--enable-ETRN \
		--enable-NTLM \
		--enable-SDPS \
		--enable-RPA \
		--without-kerberos5 \
		--without-gssapi \
		--enable-fallback=no
	make
}

package() {
	make DESTDIR="$pkgdir" install
	install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
	install -Dm644 "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
	install -o fetchmail -g fetchmail -d "$pkgdir"/var/lib/fetchmail \
		"$pkgdir"/var/run/fetchmail
}

fetchmailconf() {
	depends="python3 py3-future python3-tkinter"
	pkgdesc="GUI for generating fetchmail configuration files"
	install=""

	amove usr/bin/fetchmailconf*
	amove usr/lib/python3*/site-packages/fetchmailconf.py*
	amove usr/lib/python3*/site-packages/__pycache__/fetchmailconf*
}


sha512sums="ea2492ec86974c3d4c7c5f8707e0e12becaa3fe906b618620f129df96e403b8312390e55db8fd8b8a942708154fb90bf936e8d47e6c4d08e3e0dc95c80e8c1ff  fetchmail-6.4.4.tar.xz
9520ec6616f4004d091b1c908d3ea38e104ad8f6595959a3cd3ef7544d05e3b75854631289e167ead08479250d04584d3f1855668a7a0ebd16a1ee9106f3b0b3  fetchmail.initd
6f031ec6bd4a3ae53cd04fbd8470f4d10bd46ca29cabffa634a6801aa2e7707169855fbc045ced3c9a69523e694511a3f076b611678143e49339c8ccac98074e  fetchmail.confd"