wok view getmail/receipt @ rev 12657

tightvnc: fix rgb path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 30 18:28:33 2012 +0200 (2012-04-30)
parents 8c782f58bfc3
children 9c3c9c680b90
line source
1 # SliTaz package receipt.
2 PACKAGE="getmail"
3 VERSION="4.26.0"
4 CATEGORY="network"
5 SHORT_DESC="A simple mail retrieval agent intended as a replacement for fetchmail."
6 MAINTAINER="claudinei@slitaz.org"
7 DEPENDS="python"
8 BUILD_DEPENDS="python python-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pyropus.ca/software/getmail"
11 WGET_URL="$WEB_SITE/old-versions/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 python setup.py build
18 python setup.py install --root=$DESTDIR || return 1
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/share/doc $fs/usr/share
28 }