Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions sound/snapcast/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=snapcast
PKG_VERSION:=0.28.0
PKG_RELEASE:=2
PKG_VERSION:=0.34.0
PKG_RELEASE:=1

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/badaix/snapcast.git
PKG_SOURCE_URL:=https://github.com/snapcast/snapcast.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_MIRROR_HASH=288325fc8b134502adb522711c18210794734675684cf5d8eba8a0a82778f6c9
PKG_MIRROR_HASH=b47c44e208708cbfd6fb89b5874ed05ffa165b959904ccc11b03073bf9b55b0a

PKG_MAINTAINER:=Szabolcs Hubai <[email protected]>, David Andreoletti <[email protected]>
PKG_LICENSE:=GPL-3.0-or-later
Expand All @@ -19,16 +19,22 @@ 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
CMAKE_OPTIONS += \
-DBUILD_TESTS=OFF \
-DBUILD_WITH_ALSA=ON \
-DBUILD_WITH_AVAHI=OFF \
-DBUILD_WITH_JACK=OFF \
-DBUILD_WITH_PIPEWIRE=OFF \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xabolcs Out of curiosity, why is snapcast built with ALSA only and not also with the more modern tooling Pipewire/jack ?

Otherwise, the PR is good to go :-)

Copy link
Contributor Author

@xabolcs xabolcs Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Out of curiosity, why is snapcast built with ALSA only

Because this is Spartaaaaaaaaa! 😉

Those JACK and PipeWire backends are not implemented (packaged in OpenWrt) yet, and in the end OpenWrt is still an embedded distribution.

But as in the earlier PR I already wrote: I plan a minimal and a full flavour for these!
A slim with ALSA and a heavier with Pulse (and other) backend(s)!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because this is Spartaaaaaaaaa!

I hope I was not the messenger ! LOL!

Those JACK and PipeWire backends are not implemented (packaged in OpenWrt)

It makes sense now.

-DBUILD_WITH_PULSE=OFF \
-DBUILD_WITH_SSL=OFF \
-DBUILD_WITH_TREMOR=ON

define Package/snapcast/Default
SECTION:=sound
CATEGORY:=Sound
TITLE:=Synchronous multiroom audio player
DEPENDS:=+AUDIO_SUPPORT:alsa-lib +libexpat +libatomic +libogg +libflac +libopus +boost +libsoxr
URL:=https://github.com/badaix/snapcast
DEPENDS:=+alsa-lib +libexpat +libatomic +libogg +libflac +libopus +boost +libsoxr
URL:=https://github.com/snapcast/snapcast
endef

define Package/snapcast/Default/description
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading