CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 201 -
(hide annotations)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 996 byte(s)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 996 byte(s)
importing opt
| 1 | cjg | 201 | # Description: Text-based email client that sucks less |
| 2 | # URL: http://www.mutt.org | ||
| 3 | # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de | ||
| 4 | # Depends on: gdbm, ncurses, openssl | ||
| 5 | |||
| 6 | name=mutt | ||
| 7 | version=1.5.18 | ||
| 8 | release=1 | ||
| 9 | source=(http://mirrors.sunsite.dk/$name/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 | xargs rm -rf | ||
| 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,mutt_dotlock.1} | ||
| 32 | rm $PKG/usr/man/man5/{mmdf.5,mbox.5} | ||
| 33 | } |