wok view getmail/receipt @ rev 15014

giac: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 14:06:30 2013 +0000 (2013-08-11)
parents 9c3c9c680b90
children 7bb096863642
line source
1 # SliTaz package receipt.
2 PACKAGE="getmail"
3 VERSION="4.41.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 $install/usr/bin $fs/usr
26 cp -a $install/usr/lib $fs/usr
27 cp -a $install/usr/share/doc $fs/usr/share
28 }