wok view pavucontrol/receipt @ rev 25540

Update some web_site/wget_url with https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 09 18:12:54 2023 +0000 (14 months ago)
parents 453c249b6219
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pavucontrol"
4 VERSION="3.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="A GTK volume control for PulseAudio"
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="LGPL2.1 GPL2 MIT"
9 WEB_SITE="https://freedesktop.org/software/pulseaudio/pavucontrol"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="gnome-icon-theme libcanberra gtkmm libsigc++"
14 BUILD_DEPENDS="intltool lynx libcanberra-dev gtkmm-dev libsigc++-dev \
15 pulseaudio-dev libglade-dev libglademm-dev libltdl"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/*} 2>/dev/null | \
21 sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure $CONFIGURE_ARGS --disable-gtk3 \
28 && make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs
35 }