# HG changeset patch # User Paul Issott # Date 1221146678 0 # Node ID 1a375f41366b5eef339fb70d5f86686c876faba6 # Parent 9759fe485bf7205c5da30f5ea18d1d4b8fde8f29 Add: beautifulsoup (Python html parser) diff -r 9759fe485bf7 -r 1a375f41366b beautifulsoup/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beautifulsoup/receipt Thu Sep 11 15:24:38 2008 +0000 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="beautifulsoup" +VERSION="3.0.7a" +CATEGORY="development" +SHORT_DESC="Python HTML-XML parser." +MAINTAINER="paul@slitaz.org" +DEPENDS="python" +BUILD_DEPENDS="python-dev" +SOURCE="BeautifulSoup" +TARBALL="$SOURCE.tar.gz" +WEB_SITE="http://www.crummy.com/software/BeautifulSoup/" +WGET_URL="http://www.crummy.com/software/BeautifulSoup/download/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +