wok annotate html5lib/receipt @ rev 3274
pcmanfm: Add chinese name and comment to pcmanfm.desktop
author | Chen Yufei <tsjz@ymail.com> |
---|---|
date | Tue Jun 02 12:45:47 2009 +0800 (2009-06-02) |
parents | |
children |
rev | line source |
---|---|
claudinei@3251 | 1 # SliTaz package receipt. |
claudinei@3251 | 2 |
claudinei@3251 | 3 PACKAGE="html5lib" |
claudinei@3251 | 4 VERSION="0.11.1" |
claudinei@3251 | 5 CATEGORY="development" |
claudinei@3251 | 6 SHORT_DESC="A ruby/python based html parser/tokenizer." |
claudinei@3251 | 7 MAINTAINER="claudinei@slitaz.org" |
claudinei@3251 | 8 TARBALL="$PACKAGE-$VERSION.zip" |
claudinei@3251 | 9 WEB_SITE="http://code.google.com/p/html5lib" |
claudinei@3251 | 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
claudinei@3251 | 11 DEPENDS="python" |
claudinei@3251 | 12 BUILD_DEPENDS="python python-dev setuptools" |
claudinei@3251 | 13 |
claudinei@3251 | 14 # Rules to configure and make the package. |
claudinei@3251 | 15 compile_rules() |
claudinei@3251 | 16 { |
claudinei@3251 | 17 cd $src |
claudinei@3251 | 18 python setup.py install --root=$PWD/_pkg |
claudinei@3251 | 19 } |
claudinei@3251 | 20 |
claudinei@3251 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
claudinei@3251 | 22 genpkg_rules() |
claudinei@3251 | 23 { |
claudinei@3251 | 24 mkdir -p $fs/usr |
claudinei@3251 | 25 cp -a $_pkg/usr $fs |
claudinei@3251 | 26 } |
claudinei@3251 | 27 |