blob: 012fc3a94d7f5445d4a9c14ba20be0c2f9d38085 [file] [log] [blame]
Brad Bishop15ae2502019-06-18 21:44:24 -04001DESCRIPTION = "PulseAudio Volume Control (pavucontrol) is a simple GTK based volume control tool ("mixer") for the PulseAudio sound server."
Brad Bishop2d39a062019-10-28 08:33:36 -04002HOMEPAGE = "https://freedesktop.org/software/pulseaudio/pavucontrol/"
3SECTION = "x11/multimedia"
Andrew Geissler9aee5002022-03-30 16:27:02 +00004LICENSE = "GPL-2.0-or-later"
Brad Bishop15ae2502019-06-18 21:44:24 -04005LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
6
Brad Bishop2d39a062019-10-28 08:33:36 -04007# glib-2.0-native is required for glib-gettextize, which is used by the
8# AM_GLIB_GNU_GETTEXT macro in configure.ac. That macro is deprecated, so the
9# glib-2.0-native dependency may go away at some point (something to keep in
10# mind when doing version upgrades).
Andrew Geissler78b72792022-06-14 06:47:25 -050011DEPENDS = "libxml-parser-perl-native intltool-native glib-2.0-native gtkmm3 pulseaudio json-glib"
Brad Bishop15ae2502019-06-18 21:44:24 -040012
Andrew Geissler5199d832021-09-24 16:47:35 -050013inherit autotools features_check perlnative pkgconfig
Brad Bishop15ae2502019-06-18 21:44:24 -040014
Andrew Geissler78b72792022-06-14 06:47:25 -050015ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
Brad Bishop15ae2502019-06-18 21:44:24 -040016
Andrew Geissler78b72792022-06-14 06:47:25 -050017SRC_URI = "http://freedesktop.org/software/pulseaudio/${BPN}/${BP}.tar.xz"
18SRC_URI:append = " ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'file://0001-pavucontrol-remove-canberra-gtk-support.patch', '', d)}"
19
20SRC_URI[sha256sum] = "ce2b72c3b5f1a70ad0df19dd81750f9455bd20870d1d3a36d20536af2e8f4e7a"
21
22PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
23PACKAGECONFIG[x11] = ",,libcanberra"
Brad Bishop15ae2502019-06-18 21:44:24 -040024
25EXTRA_OECONF = "--disable-lynx "
26
Patrick Williams213cb262021-08-07 19:21:33 -050027RDEPENDS:${PN} += "pulseaudio-server"