wok view giws/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 913e7292869b
children ac8ca9758df1
line source
1 # SliTaz package receipt.
3 PACKAGE="giws"
4 VERSION="2.0.2"
5 CATEGORY="development"
6 SHORT_DESC="Generates a C++ wrapper on the Java object."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="CeCILL"
9 WEB_SITE="https://github.com/opencollab/giws"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/opencollab/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS="python"
15 BUILD_DEPENDS="python libxml2-python"
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 build
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/* $fs
34 }