packages/sound/mpc/Makefile
michu 83a7db5e07 update mpc to v0.14
git-svn-id: svn://svn.openwrt.org/openwrt/packages@13857 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-01-04 13:01:21 +00:00

55 lines
1.1 KiB
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=mpc
PKG_VERSION:=0.14
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/musicpd
PKG_MD5SUM:=f4218602342cf322872a41dfe0cc72e1
include $(INCLUDE_DIR)/package.mk
define Package/mpc
SECTION:=sound
CATEGORY:=Sound
TITLE:=Music Player Daemon Console Client
URL:=http://www.musicpd.org/
endef
define Package/mpc/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.
this is MPC
endef
define Build/Configure
$(call Build/Configure/Default, \
--disable-iconv \
)
endef
define Build/Compile
$(call Build/Compile/Default,\
prefix="/usr" \
all \
)
endef
define Package/mpc/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_BUILD_DIR)/src/mpc $(1)/usr/bin/
$(INSTALL_BIN) ./files/pls-handler.sh $(1)/usr/bin
endef
$(eval $(call BuildPackage,mpc))