--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/fetchmail
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/fetchmail.1.gz
--- /dev/null
+# Description: A remote-mail retrieval utility
+# URL: http://fetchmail.berlios.de/
+# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: openssl
+
+name=fetchmail
+version=6.3.13
+release=1
+source=(http://download.berlios.de/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man \
+ --with-ssl=/usr \
+ --disable-nls
+ make
+ make DESTDIR=$PKG install
+
+ rm -rf $PKG/usr/bin/fetchmailconf \
+ $PKG/usr/man/man?/fetchmailconf.? \
+ $PKG/usr/lib
+}