CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 1998 -
(hide annotations)
Tue Oct 12 09:22:59 2010 UTC (2 years, 8 months ago) by acrux
File size: 970 byte(s)
Tue Oct 12 09:22:59 2010 UTC (2 years, 8 months ago) by acrux
File size: 970 byte(s)
2.7 initial import
| 1 | acrux | 1998 | # 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.21 | ||
| 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 | } |