wok view beautifulsoup/receipt @ rev 6714

linux/bootloader.sh: align initrdlen to 32bits
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 14 13:41:19 2010 +0200 (2010-10-14)
parents 4ffc7c76d358
children 48bed9cd4db4
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-$VERSION.tar.gz"
12 WEB_SITE="http://www.crummy.com/software/BeautifulSoup/"
13 WGET_URL="http://www.crummy.com/software/BeautifulSoup/download/3.1.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 }