2014-10-25 00:55:41 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# shairport-sync
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2015-02-12 11:57:50 +01:00
|
|
|
SHAIRPORT_SYNC_VERSION = 2.2.1
|
2014-10-25 00:55:41 +02:00
|
|
|
SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VERSION))
|
|
|
|
|
|
|
|
SHAIRPORT_SYNC_LICENSE = MIT, BSD-3c
|
|
|
|
SHAIRPORT_SYNC_LICENSE_FILES = LICENSES
|
2014-11-30 12:42:56 +01:00
|
|
|
SHAIRPORT_SYNC_DEPENDENCIES = alsa-lib libdaemon popt host-pkgconf
|
|
|
|
|
|
|
|
# Touching configure.ac with the patches
|
2014-10-25 00:55:41 +02:00
|
|
|
SHAIRPORT_SYNC_AUTORECONF = YES
|
2014-11-30 12:42:56 +01:00
|
|
|
|
|
|
|
SHAIRPORT_SYNC_CONF_OPTS = --with-alsa
|
2014-10-25 00:55:41 +02:00
|
|
|
|
2014-11-04 14:04:29 +01:00
|
|
|
# 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)
|
2014-10-25 00:55:41 +02:00
|
|
|
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
|
2014-10-30 10:03:09 +01:00
|
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=openssl
|
2014-10-25 00:55:41 +02:00
|
|
|
else
|
|
|
|
SHAIRPORT_SYNC_DEPENDENCIES += polarssl
|
2014-10-30 10:03:09 +01:00
|
|
|
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=polarssl
|
2014-10-25 00:55:41 +02:00
|
|
|
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
|
|
|
|
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))
|