wok view feedparser/receipt @ rev 24055

Add current_version for most github hosted softwares
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 08 08:46:05 2021 +0000 (2021-06-08)
parents 240fb3120638
children ac8ca9758df1
line source
1 # SliTaz package receipt.
3 PACKAGE="feedparser"
4 VERSION="5.2.1"
5 CATEGORY="misc"
6 SHORT_DESC="Parse RSS and Atom feeds in Python."
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/kurtmckee/feedparser"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/kurtmckee/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS="libxml2 python"
15 BUILD_DEPENDS="libxml2-dev python-dev python-setuptools"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 python setup.py install --root=$DESTDIR
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/python* $fs/usr/lib
34 }