[packages] cmus add option for pulseaudio functionality

Signed-off-by: Peter Wagner <tripolar@gmx.at>



git-svn-id: svn://svn.openwrt.org/openwrt/packages@37595 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
tripolar 2013-07-29 00:57:07 +00:00
parent c94f13c392
commit 5fb2313e91
2 changed files with 17 additions and 3 deletions

8
sound/cmus/Config.in Normal file
View File

@ -0,0 +1,8 @@
menu "Configuration"
depends on PACKAGE_cmus
config CMUS_WITH_PULSE
bool
default n
prompt "Enable pulseaudio support"
endmenu

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=cmus
PKG_VERSION:=2.5.0
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/cmus
@ -28,12 +28,18 @@ define Package/cmus
DEPENDS:= \
+libpthread +librt +libncursesw $(ICONV_DEPENDS) \
+AUDIO_SUPPORT:alsa-lib \
+BUILD_PATENTED:libmad +libvorbisidec +libflac
+BUILD_PATENTED:libmad +libvorbisidec +libflac \
+CMUS_WITH_PULSE:pulseaudio-daemon
TITLE:=C* Music Player
MAINTAINER:=Peter Wagner <tripolar@gmx.at>
URL:=http://cmus.sourceforge.net/
endef
define Package/cmus/config
source "$(SOURCE)/Config.in"
endef
define Package/cmus/description
C* Music Player is a modular and very configurable ncurses-based
audio player. It has some interesting features like configurable
@ -64,7 +70,7 @@ define Build/Configure
CONFIG_AAC=n \
CONFIG_FFMPEG=n \
CONFIG_ROAR=n \
CONFIG_PULSE=n \
CONFIG_PULSE=$(if $(CONFIG_CMUS_WITH_PULSE),a,n) \
CONFIG_ALSA=$(if $(CONFIG_AUDIO_SUPPORT),a,n) \
CONFIG_AO=n \
CONFIG_ARTS=n \