wok view pavucontrol/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents 057c6366ef59
children 73f36875e5a7
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="http://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 }