wok diff getmail/receipt @ rev 9673

mercurial: We just need libssl
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 03 10:09:20 2011 +0200 (2011-05-03)
parents
children e63b4c31de96
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/getmail/receipt	Tue May 03 10:09:20 2011 +0200
     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 +}