30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
161 lines
4.6 KiB
Makefile
161 lines
4.6 KiB
Makefile
################################################################################
|
|
#
|
|
# pulseaudio
|
|
#
|
|
################################################################################
|
|
|
|
PULSEAUDIO_VERSION = 9.0
|
|
PULSEAUDIO_SOURCE = pulseaudio-$(PULSEAUDIO_VERSION).tar.xz
|
|
PULSEAUDIO_SITE = http://freedesktop.org/software/pulseaudio/releases
|
|
PULSEAUDIO_INSTALL_STAGING = YES
|
|
PULSEAUDIO_LICENSE = LGPL-2.1+ (specific license for modules, see LICENSE file)
|
|
PULSEAUDIO_LICENSE_FILES = LICENSE GPL LGPL
|
|
PULSEAUDIO_CONF_OPTS = \
|
|
--disable-default-build-tests \
|
|
--disable-legacy-database-entry-format \
|
|
--disable-manpages
|
|
|
|
# Make sure we don't detect libatomic_ops. Indeed, since pulseaudio
|
|
# requires json-c, which needs 4 bytes __sync builtins, there should
|
|
# be no need for pulseaudio to rely on libatomic_ops.
|
|
PULSEAUDIO_CONF_ENV += \
|
|
ac_cv_header_atomic_ops_h=no
|
|
|
|
# 0002-webrtc-C-11-is-only-required-for-WebRTC-support.patch
|
|
PULSEAUDIO_AUTORECONF = YES
|
|
|
|
PULSEAUDIO_DEPENDENCIES = \
|
|
host-pkgconf libtool json-c libsndfile speex host-intltool \
|
|
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
|
|
$(if $(BR2_PACKAGE_ALSA_LIB),alsa-lib) \
|
|
$(if $(BR2_PACKAGE_LIBGLIB2),libglib2) \
|
|
$(if $(BR2_PACKAGE_AVAHI_DAEMON),avahi) \
|
|
$(if $(BR2_PACKAGE_DBUS),dbus) \
|
|
$(if $(BR2_PACKAGE_BLUEZ_UTILS),bluez_utils) \
|
|
$(if $(BR2_PACKAGE_OPENSSL),openssl) \
|
|
$(if $(BR2_PACKAGE_FFTW),fftw) \
|
|
$(if $(BR2_PACKAGE_SYSTEMD),systemd)
|
|
|
|
ifeq ($(BR2_PACKAGE_GDBM),y)
|
|
PULSEAUDIO_CONF_OPTS += --with-database=gdbm
|
|
PULSEAUDIO_DEPENDENCIES += gdbm
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --with-database=simple
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JACK2),y)
|
|
PULSEAUDIO_CONF_OPTS += --enable-jack
|
|
PULSEAUDIO_DEPENDENCIES += jack2
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-jack
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ORC),y)
|
|
PULSEAUDIO_DEPENDENCIES += orc
|
|
PULSEAUDIO_CONF_ENV += ORCC=$(HOST_DIR)/usr/bin/orcc
|
|
PULSEAUDIO_CONF_OPTS += --enable-orc
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-orc
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
|
PULSEAUDIO_DEPENDENCIES += libcap
|
|
PULSEAUDIO_CONF_OPTS += --with-caps
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --without-caps
|
|
endif
|
|
|
|
# gtk3 support needs X11 backend
|
|
ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
|
|
PULSEAUDIO_DEPENDENCIES += libgtk3
|
|
PULSEAUDIO_CONF_OPTS += --enable-gtk3
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-gtk3
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSOXR),y)
|
|
PULSEAUDIO_CONF_OPTS += --with-soxr
|
|
PULSEAUDIO_DEPENDENCIES += libsoxr
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --without-soxr
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
PULSEAUDIO_CONF_OPTS += --enable-udev
|
|
PULSEAUDIO_DEPENDENCIES += udev
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-udev
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING),y)
|
|
PULSEAUDIO_CONF_OPTS += --enable-webrtc-aec
|
|
PULSEAUDIO_DEPENDENCIES += webrtc-audio-processing
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-webrtc-aec
|
|
endif
|
|
|
|
# neon intrinsics not available with float-abi=soft
|
|
ifeq ($(BR2_ARM_SOFT_FLOAT),)
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
|
PULSEAUDIO_USE_NEON = y
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(PULSEAUDIO_USE_NEON),y)
|
|
PULSEAUDIO_CONF_OPTS += --enable-neon-opt=yes
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --enable-neon-opt=no
|
|
endif
|
|
|
|
# pulseaudio alsa backend needs pcm/mixer apis
|
|
ifneq ($(BR2_PACKAGE_ALSA_LIB_PCM)$(BR2_PACKAGE_ALSA_LIB_MIXER),yy)
|
|
PULSEAUDIO_CONF_OPTS += --disable-alsa
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXCB)$(BR2_PACKAGE_XLIB_LIBSM)$(BR2_PACKAGE_XLIB_LIBXTST),yyy)
|
|
PULSEAUDIO_DEPENDENCIES += libxcb xlib_libSM xlib_libXtst
|
|
|
|
# .desktop file generation needs nls support, so fake it for !locale builds
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=54658
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
define PULSEAUDIO_FIXUP_DESKTOP_FILES
|
|
cp $(@D)/src/daemon/pulseaudio.desktop.in \
|
|
$(@D)/src/daemon/pulseaudio.desktop
|
|
cp $(@D)/src/daemon/pulseaudio-kde.desktop.in \
|
|
$(@D)/src/daemon/pulseaudio-kde.desktop
|
|
endef
|
|
PULSEAUDIO_POST_PATCH_HOOKS += PULSEAUDIO_FIXUP_DESKTOP_FILES
|
|
endif
|
|
|
|
else
|
|
PULSEAUDIO_CONF_OPTS += --disable-x11
|
|
endif
|
|
|
|
define PULSEAUDIO_REMOVE_VALA
|
|
rm -rf $(TARGET_DIR)/usr/share/vala
|
|
endef
|
|
|
|
PULSEAUDIO_POST_INSTALL_TARGET_HOOKS += PULSEAUDIO_REMOVE_VALA
|
|
|
|
ifeq ($(BR2_PACKAGE_PULSEAUDIO_DAEMON),y)
|
|
define PULSEAUDIO_USERS
|
|
pulse -1 pulse -1 * /var/run/pulse - audio,pulse-access
|
|
endef
|
|
|
|
define PULSEAUDIO_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 755 package/pulseaudio/S50pulseaudio \
|
|
$(TARGET_DIR)/etc/init.d/S50pulseaudio
|
|
endef
|
|
|
|
define PULSEAUDIO_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/pulseaudio/pulseaudio.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/pulseaudio.service
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/pulseaudio.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/pulseaudio.service
|
|
endef
|
|
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|