Browse Source

mpd-full: enable lame and vorbis encoders

Enable Vorbis encoder for OGG format and lame for MP3.
This enables mpd to stream OGG and MP3 to e.g. Icecast2.

Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
lilik-openwrt-22.03
Alexander Egorenkov 3 years ago
parent
commit
059dcc9058
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      sound/mpd/Makefile

+ 5
- 3
sound/mpd/Makefile View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mpd
PKG_VERSION:=0.22.6
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://www.musicpd.org/download/mpd/0.22/
@ -48,7 +48,7 @@ define Package/mpd-full
$(call Package/mpd/Default)
TITLE+= (full)
DEPENDS+= +AUDIO_SUPPORT:pulseaudio-daemon +libvorbis +libmms +libupnp +libshout +yajl \
+libffmpeg +!BUILD_PATENTED:libmad
+libffmpeg +lame-lib +!BUILD_PATENTED:libmad
PROVIDES:=mpd
VARIANT:=full
endef
@ -188,7 +188,9 @@ ifeq ($(BUILD_VARIANT),full)
-Dpulse=$(if $(CONFIG_AUDIO_SUPPORT),en,dis)abled \
-Drecorder=true \
-Dshout=enabled \
-Dyajl=enabled
-Dyajl=enabled \
-Dvorbisenc=enabled \
-Dlame=enabled
ifeq ($(CONFIG_AUDIO_SUPPORT),y)
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib/pulseaudio


Loading…
Cancel
Save