wok view puddletag/receipt @ rev 25601

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 18:06:38 2023 +0000 (10 months ago)
parents 5ea0ce1cecc0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="puddletag"
4 VERSION="1.2.0"
5 CATEGORY="multimedia"
6 TAGS="tagging ogg mp3 apev2 mp4 id3"
7 SHORT_DESC="A simple, powerful audio tag editor."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL3"
10 WEB_SITE="https://docs.puddletag.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/keithgg/$PACKAGE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="mutagen python-configobj python-pyparsing PyQt-x11-gpl"
16 BUILD_DEPENDS="python"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - ${WGET_URL%/down*} 2>/dev/null | \
22 sed '/\/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 python setup.py build
29 python setup.py install --root=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/* $fs
36 }