wok rev 9163

Add: getmail (4.20.0)
author Claudinei Pereira <claudinei@slitaz.org>
date Mon Mar 07 23:30:53 2011 +0000 (2011-03-07)
parents b21192024406
children 9fe40722d01d a37dbfc8679f
files getmail/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/getmail/receipt	Mon Mar 07 23:30:53 2011 +0000
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +PACKAGE="getmail"
     1.6 +VERSION="4.20.0"
     1.7 +CATEGORY="network"
     1.8 +SHORT_DESC="A simple mail retrieval agent intended as a replacement for fetchmail."
     1.9 +MAINTAINER="claudinei@slitaz.org"
    1.10 +DEPENDS="python"
    1.11 +BUILD_DEPENDS="python python-dev"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://pyropus.ca/software/getmail"
    1.14 +WGET_URL="$WEB_SITE/old-versions/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	python setup.py build
    1.21 +	python setup.py install --root=$DESTDIR || return 1
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/share
    1.28 +	cp -a $_pkg/usr/bin $fs/usr
    1.29 +	cp -a $_pkg/usr/lib $fs/usr
    1.30 +	cp -a $_pkg/usr/share/doc $fs/usr/share
    1.31 +}