wok view getmail/receipt @ rev 16572

slitaz-base-files: dont symlink /var/run, it --bind on /rn tmpfs
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 19:10:08 2014 +0200 (2014-05-02)
parents 924647aeae82
children 16df76e1fc6a
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 LICENSE="GPL2"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://pyropus.ca/software/getmail"
10 WGET_URL="$WEB_SITE/old-versions/$TARBALL"
12 DEPENDS="python"
13 BUILD_DEPENDS="python python-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py build
20 python setup.py install --root=$DESTDIR || return 1
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 cp -a $install/usr/share/doc $fs/usr/share
30 }