wok-6.x annotate feedparser/receipt @ rev 15026
sylpheed: fix genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 11 22:07:47 2013 +0000 (2013-08-11) |
parents | a873d962c59b |
children | 3b4e4318134e |
rev | line source |
---|---|
jozee@2679 | 1 # SliTaz package receipt. |
jozee@2679 | 2 |
jozee@2679 | 3 PACKAGE="feedparser" |
claudinei@14858 | 4 VERSION="5.1.3" |
jozee@2679 | 5 CATEGORY="misc" |
jozee@2679 | 6 SHORT_DESC="Parse RSS and Atom feeds in Python" |
jozee@2679 | 7 MAINTAINER="jozee@slitaz.org" |
jozee@2679 | 8 DEPENDS="libxml2 python" |
claudinei@14858 | 9 BUILD_DEPENDS="libxml2-dev python-dev setuptools" |
slaxemulator@11106 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@2679 | 11 WEB_SITE="http://feedparser.sf.net" |
slaxemulator@11106 | 12 WGET_URL="http://feedparser.googlecode.com/files/$TARBALL" |
jozee@2679 | 13 |
jozee@2679 | 14 # Rules to configure and make the package. |
jozee@2679 | 15 compile_rules() |
jozee@2679 | 16 { |
jozee@2679 | 17 cd $src |
slaxemulator@11106 | 18 python setup.py install --root=$DESTDIR |
jozee@2679 | 19 } |
jozee@2679 | 20 |
jozee@2679 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@2679 | 22 genpkg_rules() |
jozee@2679 | 23 { |
jozee@2679 | 24 mkdir -p $fs/usr/lib |
claudinei@14858 | 25 cp -a $install/usr/lib/python* $fs/usr/lib |
jozee@2679 | 26 } |