wok view beautifulsoup/receipt @ rev 5713

Up osmo (0.2.10)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 24 08:29:46 2010 +0200 (2010-06-24)
parents 864f81193c82
children d716f22ec2df
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="3.1.0.1"
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.tar.gz"
12 WEB_SITE="http://www.crummy.com/software/BeautifulSoup/"
13 WGET_URL="http://www.crummy.com/software/BeautifulSoup/download/$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 }