wok view beautifulsoup/receipt @ rev 1713

get-*: add ROOT support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 17 08:50:02 2008 +0000 (2008-11-17)
parents
children 864f81193c82
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="3.0.7a"
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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py build
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $_pkg/usr $fs
27 }