CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 382 -
(show annotations)
Sun Oct 4 15:03:01 2009 UTC (3 years, 7 months ago) by cjg
File size: 970 byte(s)
Sun Oct 4 15:03:01 2009 UTC (3 years, 7 months ago) by cjg
File size: 970 byte(s)
mutt: autoupdated to 1.5.19-1
| 1 | # Description: Text-based email client that sucks less |
| 2 | # URL: http://www.mutt.org |
| 3 | # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de |
| 4 | # Depends on: gdbm ncurses openssl zlib |
| 5 | |
| 6 | name=mutt |
| 7 | version=1.5.19 |
| 8 | release=1 |
| 9 | source=(ftp://ftp.mutt.org/mutt/devel/$name-$version.tar.gz) |
| 10 | |
| 11 | build () { |
| 12 | cd $name-$version |
| 13 | |
| 14 | ./configure --prefix=/usr \ |
| 15 | --mandir=/usr/man \ |
| 16 | --with-docdir=/usr/share/mutt \ |
| 17 | --with-mailpath=/var/spool/mail \ |
| 18 | --enable-pop \ |
| 19 | --enable-imap \ |
| 20 | --with-ssl \ |
| 21 | --enable-hcache \ |
| 22 | --disable-nls \ |
| 23 | # --enable-smtp --with-sasl |
| 24 | |
| 25 | make |
| 26 | make DESTDIR=$PKG install |
| 27 | |
| 28 | find $PKG/usr/share/mutt/* ! -name manual.txt -delete |
| 29 | rm $PKG/usr/etc/{Muttrc,mime.types}.dist |
| 30 | rm $PKG/usr/bin/{flea,muttbug} |
| 31 | rm $PKG/usr/man/man1/{flea.1,muttbug.1} |
| 32 | rm $PKG/usr/man/man5/{mmdf.5,mbox.5} |
| 33 | } |