wok view getmail/receipt @ rev 23954

updated smplayer (20.4.2 -> 20.6.0)
author Hans-G?nter Theisgen
date Tue Sep 22 17:05:06 2020 +0100 (2020-09-22)
parents eece70964091
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="getmail"
4 VERSION="5.14"
5 CATEGORY="network"
6 SHORT_DESC="A simple mail retrieval agent intended as a replacement for fetchmail."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://pyropus.ca/software/getmail"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/old-versions/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py build
21 python setup.py install --root=$DESTDIR || return 1
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 cp -a $install/usr/share/doc $fs/usr/share
32 }