wok view feedparser/receipt @ rev 9621

Up: pure-ftpd to 1.0.31. This fixed STARTTLS flaw similar to Postfix's CVE-2011-0411.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 20 02:01:02 2011 +0000 (2011-04-20)
parents 1073d7633e29
children d1768332cee0
line source
1 # SliTaz package receipt.
3 PACKAGE="feedparser"
4 VERSION="4.1"
5 CATEGORY="misc"
6 SHORT_DESC="Parse RSS and Atom feeds in Python"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 python"
9 BUILD_DEPENDS="libxml2-dev python-dev"
10 TARBALL="$PACKAGE-$VERSION.zip"
11 WEB_SITE="http://feedparser.sf.net"
12 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -Np0 -i ../stuff/feedparser_utf8_decoding.patch
19 python setup.py build
20 python setup.py install --root=$PWD/_pkg
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/python* $fs/usr/lib
29 }