wok rev 1973

Add: mutt-1.5.18
author Julien Rabier <taziden@slitaz.org>
date Sat Jan 03 04:12:27 2009 +0100 (2009-01-03)
parents 71a61ee766c9
children 8da74c3a8369
files mutt/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mutt/receipt	Sat Jan 03 04:12:27 2009 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +
     1.5 +# SliTaz package receipt
     1.6 +
     1.7 +PACKAGE="mutt"
     1.8 +VERSION="1.5.18"
     1.9 +CATEGORY="network"
    1.10 +SHORT_DESC="Small and powerful text-based mail client"
    1.11 +MAINTAINER="taziden@slitaz.org"
    1.12 +DEPENDS="openssl ncurses"
    1.13 +BUILD_DEPENDS="ncurses-dev openssl"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://www.mutt.org"
    1.16 +WGET_URL="ftp://ftp.mutt.org/mutt/devel/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{	
    1.21 +    cd $src
    1.22 +    ./configure --prefix=/usr --enable-imap --with-ssl=/usr --with-mailpath=/var/mail --sysconfdir=/etc --enable-pop --enable-smtp $CONFIGURE_ARGS &&
    1.23 +	make &&
    1.24 +	make DESTDIR=$PWD/_pkg install
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr/bin $fs/etc
    1.31 +	cp -a $_pkg/usr/bin/mutt $fs/usr/bin/
    1.32 +	cp -a $_pkg/etc/* $fs/etc/	
    1.33 +	cp -a $_pkg/usr/share $fs/usr/
    1.34 +	rm -r $fs/usr/share/doc
    1.35 +	rm -r $fs/usr/share/man
    1.36 +}
    1.37 +