wok view python-bpython/receipt @ rev 13636

Up: ecore (1.7.1)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Nov 16 00:00:52 2012 +0100 (2012-11-16)
parents d1768332cee0
children d13abbbfc743
line source
1 # SliTaz package receipt.
3 PACKAGE="python-bpython"
4 SOURCE="bpython"
5 VERSION="0.9.5.2"
6 CATEGORY="development"
7 SHORT_DESC="A fancy interface to the Python interpreter."
8 MAINTAINER="claudinei@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.bpython-interpreter.org"
11 WGET_URL="$WEB_SITE/releases/$TARBALL"
12 DEPENDS="python python-pygments setuptools"
13 BUILD_DEPENDS="$DEPENDS python-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 for file in `find $_pkg | grep 'pyc$'`; do
26 rm $file
27 done
28 rm -rf $_pkg/usr/share/applications
29 mkdir -p $fs/usr $fs/usr/share/applications
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 cp -a $stuff/* $fs/usr/share/applications
33 }