wok view beautifulsoup/receipt @ rev 12999

intltool: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 06 13:52:30 2012 +0200 (2012-06-06)
parents d716f22ec2df
children 105056b6bc58
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="3.2.0"
5 CATEGORY="development"
6 SHORT_DESC="Python HTML-XML parser."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="python"
9 BUILD_DEPENDS="python-dev"
10 SOURCE="BeautifulSoup"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.crummy.com/software/BeautifulSoup/"
13 WGET_URL="http://www.crummy.com/software/BeautifulSoup/download/3.x/$TARBALL"
14 TAGS="parser XML HTML"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py build
21 python setup.py install --root=$PWD/_pkg
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $_pkg/usr $fs
28 }