wok view mutt/receipt @ rev 2464

mISDNuser, magnifier, mcabber, mencoder, mhwaveedit, mirage, mjpegtools, mousepad, mpd, mpfr, mpg123, mplayer, mrxvt, mtools, mtpaint, mutt: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 14 15:40:12 2009 +0000 (2009-03-14)
parents 20a6beeb6eee
children faf21c50d61f
line source
2 # SliTaz package receipt
4 PACKAGE="mutt"
5 VERSION="1.5.18"
6 CATEGORY="network"
7 SHORT_DESC="Small and powerful text-based mail client"
8 MAINTAINER="taziden@slitaz.org"
9 DEPENDS="openssl ncurses zlib"
10 BUILD_DEPENDS="ncurses-dev openssl"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.mutt.org"
13 WGET_URL="ftp://ftp.mutt.org/mutt/devel/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --enable-imap --with-ssl=/usr --with-mailpath=/var/mail --sysconfdir=/etc --enable-pop --enable-smtp $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/etc
28 cp -a $_pkg/usr/bin/mutt $fs/usr/bin/
29 cp -a $_pkg/etc/* $fs/etc/
30 cp -a $_pkg/usr/share $fs/usr/
31 rm -r $fs/usr/share/doc
32 rm -r $fs/usr/share/man
33 }