wok view py3k-cparser/receipt @ rev 25532

Add some current_version()
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 27 10:46:05 2023 +0000 (14 months ago)
parents 5f5b715c8ec9
children 0262035dc1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="py3k-cparser"
4 VERSION="2.21"
5 CATEGORY="development"
6 SHORT_DESC="Complete C99 parser in pure Python."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/eliben/pycparser/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/eliben/pycparser/archive/release_v$VERSION.tar.gz"
14 DEPENDS="py3k"
15 BUILD_DEPENDS="py3k"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python3 setup.py install --prefix=/usr --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs/
34 }