wok view mutagen/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents 5ea0ce1cecc0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mutagen"
4 VERSION="1.42.0"
5 CATEGORY="multimedia"
6 TAGS="tagging asf flac m4a mp3 musepack ogg aiff id3"
7 SHORT_DESC="Read and write audio tags for many formats."
8 MAINTAINER="rj.rohit@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/quodlibet/mutagen"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/quodlibet/$PACKAGE/releases/download/release-$VERSION/$TARBALL"
15 DEPENDS="python"
16 BUILD_DEPENDS="cacerts 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/[a-z-]*||;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 }