0
0
mirror of https://github.com/openwrt/packages.git synced 2025-10-04 04:00:13 +00:00
Files
packages/sound/snapcast/Makefile
Szabolcs Hubai a9ac8666da snapcast: fix PulseAudio
While testing my integration of Snapcast, I didn't test with CONFIG_ALL*
and CONFIG_BUILDBOT flags, but the buildbots did and failed with a lot
of undefined reference to PulseAudio.

Fix it with preventing PulseAudio detection.
While at it, prevent Avahi detection too to save more flash space.

These features will be available later, through flavours.

Fixes: https://github.com/openwrt/packages/pull/23956
Fixes: eeb8d131fc ("snapcast: add package snapserver and snapclient")

Signed-off-by: Szabolcs Hubai <szab.hu@gmail.com>
2025-09-14 11:51:09 +02:00

103 lines
3.0 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
include $(TOPDIR)/rules.mk
PKG_NAME:=snapcast
PKG_VERSION:=0.28.0
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/badaix/snapcast.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_MIRROR_HASH=288325fc8b134502adb522711c18210794734675684cf5d8eba8a0a82778f6c9
PKG_MAINTAINER:=Szabolcs Hubai <szab.hu@gmail.com>, David Andreoletti <david@andreoletti.net>
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=LICENSE
PKG_CPE_ID:=cpe:/a:badaix:snapcast
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
CMAKE_OPTIONS += -DBUILD_TESTS=OFF
CMAKE_OPTIONS += -DBUILD_WITH_PULSE=OFF
CMAKE_OPTIONS += -DBUILD_WITH_AVAHI=OFF
define Package/snapcast/Default
SECTION:=sound
CATEGORY:=Sound
TITLE:=Synchronous multiroom audio player
DEPENDS:=+AUDIO_SUPPORT:alsa-lib +libavahi-client +libatomic +libogg +libflac +libopus +boost +libsoxr
URL:=https://github.com/badaix/snapcast
endef
define Package/snapcast/Default/description
Synchronous audio player - Snapcast
Snapcast is a multi-room client-server audio player,
where all clients are time synchronized with the server
to play perfectly synced audio.
It's not a standalone player, but an extension that turns
your existing audio player into a Sonos-like multiroom solution.
Audio is captured by the server and routed to the connected clients.
Several players can feed audio to the server in parallel
and clients can be grouped to play the same audio stream.
One of the most generic ways to use Snapcast is in conjunction
with the Music Player Daemon (MPD) or Mopidy.
endef
define Package/snapserver
$(call Package/snapcast/Default)
TITLE+= (server)
DEPENDS+=+libvorbis
endef
define Package/snapclient
$(call Package/snapcast/Default)
TITLE+= (client)
DEPENDS+=+libvorbisidec
endef
define Package/snapserver/description
$(call Package/snapcast/Default/description)
This package contains the Snapcast server.
endef
define Package/snapclient/description
$(call Package/snapcast/Default/description)
This package contains the Snapcast client.
endef
define Package/snapserver/conffiles
/etc/config/snapserver
/etc/snapserver.conf
endef
define Package/snapclient/conffiles
/etc/config/snapclient
endef
define Package/snapserver/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/snapserver $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/snapserver.init $(1)/etc/init.d/snapserver
$(INSTALL_CONF) $(PKG_BUILD_DIR)/server/etc/snapserver.conf $(1)/etc/snapserver.conf
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/snapserver.conf $(1)/etc/config/snapserver
endef
define Package/snapclient/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/snapclient $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/snapclient.init $(1)/etc/init.d/snapclient
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/snapclient.conf $(1)/etc/config/snapclient
endef
$(eval $(call BuildPackage,snapserver))
$(eval $(call BuildPackage,snapclient))