wok view sozi/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 626c3828c08f
children 3e075bf0378a
line source
1 # SliTaz package receipt.
3 PACKAGE="sozi"
4 VERSION="12.09-27213249"
5 CATEGORY="graphics"
6 SHORT_DESC="A small program that can play animated presentations."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/senshu/Sozi"
10 TARBALL="$PACKAGE-release-$VERSION.zip"
11 WGET_URL="https://github.com/downloads/senshu/Sozi/$TARBALL"
13 DEPENDS="inkscape python pygtk python-lxml"
14 BUILD_DEPENDS="wget"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/inkscape/extensions
33 cp -a $src/* $fs/usr/share/inkscape/extensions/
34 }