29 lines
832 B
Bash
29 lines
832 B
Bash
# Template file for 'fetchmail'
|
|
pkgname=fetchmail
|
|
version=6.4.11
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-ssl=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="python3"
|
|
makedepends="libressl-devel"
|
|
depends="fetchmailconf"
|
|
short_desc="Remote-mail retrieval utility"
|
|
maintainer="Piotr Wójcik <chocimier@tlen.pl>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://fetchmail.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
|
|
checksum=3e481dd869907c3786b486fd8a7bb4b24e60889b1ac449b786ec0a059b39e29c
|
|
|
|
post_install() {
|
|
vsed -i -e 's,/usr/bin/python ,/usr/bin/python3 ,' "${DESTDIR}/usr/bin/fetchmailconf"
|
|
}
|
|
|
|
fetchmailconf_package() {
|
|
depends="python3-future python3-tkinter"
|
|
pkg_install() {
|
|
vmove usr/bin/fetchmailconf
|
|
vmove usr/share/man/man1/fetchmailconf.1
|
|
vmove "${py3_sitelib}"
|
|
}
|
|
}
|