wok view beautifulsoup/receipt @ rev 13569

Add blazekiss
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 03 16:17:38 2012 +0100 (2012-11-03)
parents 48bed9cd4db4
children 223b265f40fd
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="4.1.3"
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="beautifulsoup4"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.crummy.com/software/BeautifulSoup/"
13 WGET_URL="http://www.crummy.com/software/BeautifulSoup/bs4/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=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir $fs
28 cp -a $install/usr $fs
29 }