wok-4.x view feedparser/receipt @ rev 3292
Update: h8300-gcc3 (add clean_wok)
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Wed Jun 03 15:26:31 2009 +0000 (2009-06-03) |
parents | |
children | e7e20f7f283a |
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 {
18 cd $src
19 python setup.py build
20 python setup.py install --root=$PWD/$PACKAGE-$VERSION/_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 }