wok view gnomad2/receipt @ rev 25460

Update sourceforge.net web_sites with https://
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 28 08:10:35 2022 +0000 (19 months ago)
parents 932cd974e081
children 6b33f9da53d4
line source
1 # SliTaz package receipt.
3 PACKAGE="gnomad2"
4 VERSION="2.9.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK+ music manager and swiss army knife for the Creative Labs NOMAD and Zen range."
7 MAINTAINER="keupont@no-log.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://gnomad2.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="dbus-glib freetype glibc gtk+ hal libid3tag
15 libmtp libnjb libusb-compat taglib"
16 BUILD_DEPENDS="glib-dev gtk+-dev hal-dev intltool libid3tag-dev libmtp-dev
17 libnjb-dev libusb-compat-dev taglib-dev"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - https://sourceforge.net/projects/gnomad2/files/gnomad2/ 2>/dev/null | \
23 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
24 sed '/scope="row/!d;s|.*%20||;s|/.*||;q'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
39 cp -a $install/usr/bin $fs/usr
40 }