wok view python-pygments/receipt @ rev 10549

php: Added back code to add desktop, image, and php.ini in compile_rules. These files are needed for php-common not php directly. Thats what they were there.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed May 25 14:47:51 2011 +0000 (2011-05-25)
parents b58b3cd9098b
children fd4f1e692109
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pygments"
4 SOURCE="Pygments"
5 VERSION="1.4"
6 CATEGORY="development"
7 SHORT_DESC="Generic syntax highlighter."
8 MAINTAINER="claudinei@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://pygments.org"
11 WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL"
12 DEPENDS="python"
13 BUILD_DEPENDS="setuptools"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
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
26 cp -a $_pkg/usr $fs
27 }
29 # Remove old package.
30 post_install()
31 {
32 rm -rf $1/var/lib/tazpkg/installed/pygments
33 }