CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 201 -
(show annotations)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 808 byte(s)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 808 byte(s)
importing opt
| 1 | # Description: A remote-mail retrieval utility |
| 2 | # URL: http://fetchmail.berlios.de/ |
| 3 | # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de |
| 4 | # Depends on: openssl |
| 5 | |
| 6 | name=fetchmail |
| 7 | version=6.3.8 |
| 8 | release=4 |
| 9 | source=(http://download.berlios.de/$name/$name-$version.tar.bz2 \ |
| 10 | http://www.fetchmail.info/fetchmail-SA-2007-02.txt \ |
| 11 | http://www.fetchmail.info/fetchmail-SA-2008-01.txt) |
| 12 | |
| 13 | build() { |
| 14 | cd $name-$version |
| 15 | patch -p0 -i $SRC/$name-SA-2007-02.txt |
| 16 | patch -p1 -i $SRC/$name-SA-2008-01.txt |
| 17 | ./configure --prefix=/usr \ |
| 18 | --mandir=/usr/man \ |
| 19 | --with-ssl=/usr \ |
| 20 | --disable-nls |
| 21 | make |
| 22 | make DESTDIR=$PKG install |
| 23 | rm -rf $PKG/usr/bin/fetchmailconf \ |
| 24 | $PKG/usr/man/man?/fetchmailconf.? \ |
| 25 | $PKG/usr/lib |
| 26 | } |