8e4c622799
Add a patch from upstream to fix static build issue with linking against openssl and alsa. Fixes: http://autobuild.buildroot.net/results/682/6821605cf12e1a5393c29b30baf00cb0f1e1a451/ http://autobuild.buildroot.net/results/3cb/3cb79d566e197771d88e317789d05e9f467f4717/ http://autobuild.buildroot.net/results/9bc/9bcc27461b67e718f49419ba292afd28f1152dc6/ http://autobuild.buildroot.net/results/75a/75afbec6ba4c4b0ae2c18423a0d7eccf098b2eaa/ .. and possibly more. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
62 lines
2.0 KiB
Makefile
62 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# shairport-sync
|
|
#
|
|
################################################################################
|
|
|
|
SHAIRPORT_SYNC_VERSION = 2.8.0
|
|
SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VERSION))
|
|
|
|
SHAIRPORT_SYNC_LICENSE = MIT, BSD-3c
|
|
SHAIRPORT_SYNC_LICENSE_FILES = LICENSES
|
|
SHAIRPORT_SYNC_DEPENDENCIES = alsa-lib libconfig libdaemon popt host-pkgconf
|
|
SHAIRPORT_SYNC_PATCH = https://github.com/mikebrady/shairport-sync/commit/8e8a0ee7ab0db61dc46735a1206843fe943ffc61.patch
|
|
|
|
# git clone, no configure
|
|
SHAIRPORT_SYNC_AUTORECONF = YES
|
|
|
|
SHAIRPORT_SYNC_CONF_OPTS = --with-alsa \
|
|
--with-metadata \
|
|
--with-pipe \
|
|
--with-stdout
|
|
|
|
# Avahi or tinysvcmdns (shaiport-sync bundles its own version of tinysvcmdns).
|
|
# Avahi support needs libavahi-client, which is built by avahi if avahi-daemon
|
|
# and dbus is selected. Since there is no BR2_PACKAGE_LIBAVAHI_CLIENT config
|
|
# option yet, use the avahi-daemon and dbus congig symbols to check for
|
|
# libavahi-client.
|
|
ifeq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_DBUS),yy)
|
|
SHAIRPORT_SYNC_DEPENDENCIES += avahi
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-avahi
|
|
else
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-tinysvcmdns
|
|
endif
|
|
|
|
# OpenSSL or PolarSSL
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
SHAIRPORT_SYNC_DEPENDENCIES += openssl
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=openssl
|
|
else
|
|
SHAIRPORT_SYNC_DEPENDENCIES += polarssl
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=polarssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SHAIRPORT_SYNC_LIBSOXR),y)
|
|
SHAIRPORT_SYNC_DEPENDENCIES += libsoxr
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-soxr
|
|
endif
|
|
|
|
define SHAIRPORT_SYNC_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/shairport-sync \
|
|
$(TARGET_DIR)/usr/bin/shairport-sync
|
|
$(INSTALL) -D -m 0644 $(@D)/scripts/shairport-sync.conf \
|
|
$(TARGET_DIR)/etc/shairport-sync.conf
|
|
endef
|
|
|
|
define SHAIRPORT_SYNC_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/shairport-sync/S99shairport-sync \
|
|
$(TARGET_DIR)/etc/init.d/S99shairport-sync
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|