# HG changeset patch # User Claudinei Pereira # Date 1243817027 0 # Node ID 55d409352eed6cd16732d76fa458cad9b9b6f1b5 # Parent e41400f28eac9144344b9759efe3ae6ee2e9d5c6 Add: pygments diff -r e41400f28eac -r 55d409352eed pygments/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pygments/receipt Mon Jun 01 00:43:47 2009 +0000 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="pygments" +SOURCE="Pygments" +VERSION="1.0" +CATEGORY="development" +SHORT_DESC="Generic syntax highlighter." +MAINTAINER="claudinei@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pygments.org" +WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr $fs +} +