wok-6.x diff mutt/receipt @ rev 2003
Up: vte (0.19.4)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Jan 08 20:24:36 2009 +0100 (2009-01-08) |
parents | |
children | cde7fa93f1d6 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mutt/receipt Thu Jan 08 20:24:36 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 +