wok view getmail/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents ebbdf9efbfdf
children 924647aeae82
line source
1 # SliTaz package receipt.
2 PACKAGE="getmail"
3 VERSION="4.30.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 }