wok view beautifulsoup/receipt @ rev 19361

Up tazpkg (919)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 03 08:46:48 2016 +0200 (2016-08-03)
parents b9aedd1a72c0
children 13daef3b4658
line source
1 # SliTaz package receipt.
3 PACKAGE="beautifulsoup"
4 VERSION="4.5.0"
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="${WEB_SITE}bs4/download/${VERSION%.*}/$TARBALL"
13 PROVIDES="python-beautifulsoup"
14 TAGS="parser XML HTML"
16 DEPENDS="python"
17 BUILD_DEPENDS="python-dev setuptools"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
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 }