wok view mitter/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
parents bb009a6ef036
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="mitter"
4 VERSION="0.4.5"
5 CATEGORY="network"
6 SHORT_DESC="Mitter is a client for Twitter."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://code.google.com/p/mitter"
11 WGET_URL="http://mitter.googlecode.com/files/$TARBALL"
12 DEPENDS="python pygtk python-simplejson"
13 BUILD_DEPENDS="python-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 python setup.py build
19 python setup.py install --root=$DESTDIR
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/applications
26 cp -a $stuff/mitter.desktop $fs/usr/share/applications
27 cp -a $install/usr $fs
28 }