1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/fetchmail/APKBUILD
2023-02-26 15:34:31 +01:00

75 lines
2.1 KiB
Text

# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fetchmail
pkgver=6.4.37
pkgrel=0
pkgdesc="remote-mail retrieval and forwarding utility"
url="https://www.fetchmail.info/"
arch="all"
license="GPL-2.0-or-later WITH OpenSSL-Exception AND Public-Domain"
pkgusers="fetchmail"
pkggroups="fetchmail"
makedepends="openssl-dev>3 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
"
# secfixes:
# 6.4.22-r0:
# - CVE-2021-39272
# 6.4.20-r0:
# - CVE-2021-36386
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="
99a620380d9bd0713d76495f587adbcc95fc16e5fcb048dc528f3039ebd8fcfbb1e2f44e10fc25f70e50940ce89922ff39f1f3d724d1f47a8d4918a37c07d8d0 fetchmail-6.4.37.tar.xz
9520ec6616f4004d091b1c908d3ea38e104ad8f6595959a3cd3ef7544d05e3b75854631289e167ead08479250d04584d3f1855668a7a0ebd16a1ee9106f3b0b3 fetchmail.initd
6f031ec6bd4a3ae53cd04fbd8470f4d10bd46ca29cabffa634a6801aa2e7707169855fbc045ced3c9a69523e694511a3f076b611678143e49339c8ccac98074e fetchmail.confd
"