feaea67a32
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19719 3c298f89-4303-0410-b956-a3cf2f4a3e73
85 lines
2.3 KiB
Makefile
85 lines
2.3 KiB
Makefile
#
|
|
# Copyright (C) 2007-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mpd
|
|
PKG_VERSION:=0.15.8
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=@SF/musicpd
|
|
PKG_MD5SUM:=824e1ce46c0f468865d9e5e403cdaf5d
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mpd
|
|
SECTION:=sound
|
|
CATEGORY:=Sound
|
|
DEPENDS:=+libflac +libid3tag +libmad +libvorbisidec +libpthread +glib2 \
|
|
+libmms +libcurl +libsqlite3 +libstdcpp +libvorbis +libshout
|
|
TITLE:=Music Player Daemon
|
|
URL:=http://www.musicpd.org/
|
|
endef
|
|
|
|
define Package/mpd/description
|
|
MPD is a music player supporting flac, mp3 and ogg files.
|
|
It is typically controlled over a network using one of it's many
|
|
clients including mpc(console), gmpc(gnome), phpmp(php) etc.
|
|
endef
|
|
|
|
define Package/mpd/conffiles
|
|
/etc/mpd.conf
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--disable-audiofile \
|
|
--disable-mpc \
|
|
--disable-aac \
|
|
--disable-lsr \
|
|
--disable-ao \
|
|
--disable-mvp \
|
|
--disable-lametest \
|
|
--disable-lame-encoder \
|
|
--enable-flac \
|
|
--enable-lastfm \
|
|
--enable-mms \
|
|
--with-tremor="$(STAGING_DIR)/usr/lib" \
|
|
|
|
ifeq ($(CONFIG_PACKAGE_kmod-sound-core),)
|
|
CONFIGURE_ARGS+= --disable-alsa
|
|
endif
|
|
|
|
TARGET_CFLAGS+=-std=gnu99
|
|
|
|
CONFIGURE_VARS += \
|
|
CURL_LIBS="-L$(STAGING_DIR)/usr/lib -lssl -lcrypto -lcurl" \
|
|
CURL_CFLAGS="-I$(STAGING_DIR)/usr/include" \
|
|
ID3TAG_LIBS="$(TARGET_LDFLAGS) -lz -lid3tag" \
|
|
ID3TAG_CFLAGS="$(TARGET_CPPFLAGS)" \
|
|
FLAC_LIBS="$(TARGET_LDFLAGS) -lFLAC" \
|
|
FLAC_CFLAGS="-I$(STAGING_DIR)/usr/include/FLAC" \
|
|
MAD_LIBS="$(TARGET_LDFLAGS) -lmad" \
|
|
MAD_CFLAGS="$(TARGET_CPPFLAGS)" \
|
|
OGGVORBIS_LIBS="$(TARGET_LDLFAGS) -lvorbisidec" \
|
|
OGGVORBIS_CFLAGS="$(TARGET_CPPFLAGS)" \
|
|
GLIB_CFLAGS="-I$(STAGING_DIR)/usr/include/glib-2.0 -I$(STAGING_DIR)/usr/lib/glib-2.0/include" \
|
|
GLIB_LIBS="$(TARGET_LDLFAGS) -L$(STAGING_DIR)/usr/lib/libintl/lib -lintl -L$(STAGING_DIR)/usr/lib/libiconv/lib -liconv -lglib-2.0 -lgthread-2.0 -pthread"
|
|
|
|
define Package/mpd/install
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(CP) $(PKG_BUILD_DIR)/doc/mpdconf.example $(1)/etc/mpd.conf
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mpd $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/mpd.init $(1)/etc/init.d/mpd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mpd))
|