blob: 7d18ed71a3b88d78d9684e788a799c8218b7e3e5 (
plain)
1 # Description: A remote-mail retrieval utility
2 # URL: http://fetchmail.berlios.de/
3 # Maintainer: Per Lidén, core-ports at crux dot nu
4 # Depends on: openssl
5
6 name=fetchmail
7 version=6.3.4
8 release=1
9 source=(http://download.berlios.de/$name/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr --with-ssl=/usr --disable-nls
14 make
15 make DESTDIR=$PKG install
16 rm -rf $PKG/usr/bin/fetchmailconf \
17 $PKG/usr/man/man?/fetchmailconf.? \
18 $PKG/usr/lib
19 }
|