opt/fetchmail/Pkgfile

28 lines
657 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A remote-mail retrieval utility
2014-06-20 18:03:45 +02:00
# URL: http://www.fetchmail.info
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: openssl
name=fetchmail
2013-04-24 18:06:45 +02:00
version=6.3.26
release=3
source=(http://downloads.sourceforge.net/project/$name/branch_6.3/$name-$version.tar.xz
disable-sslv3.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
# fix build with openssl 1.1.1
patch -p1 -i $SRC/disable-sslv3.patch
# don't build python stuff
sed -i '19,21s/^/#/' Makefile.am
autoreconf -vi
./configure --prefix=/usr \
--with-ssl=/usr \
--disable-nls
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
}