wok view beautifulsoup/receipt @ rev 16155

mirror-tools: no more mirror-info since http://hg.slitaz.org/slitaz-dev-tools/rev/113c2519c444
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 28 14:14:24 2014 +0000 (2014-03-28)
parents 223b265f40fd
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="4.3.2"
5 CATEGORY="development"
6 SHORT_DESC="Python HTML-XML parser."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="beautifulsoup4"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.crummy.com/software/BeautifulSoup/"
12 WGET_URL="http://www.crummy.com/software/BeautifulSoup/bs4/download/4.3/$TARBALL"
13 TAGS="parser XML HTML"
15 DEPENDS="python"
16 BUILD_DEPENDS="python-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 python setup.py build
23 python setup.py install --root=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir $fs
30 cp -a $install/usr $fs
31 }