2006-12-11 16:59:52 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-03-04 04:19:46 +00:00
|
|
|
# $Id$
|
2006-12-11 16:59:52 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mpc
|
2007-08-23 15:25:45 +00:00
|
|
|
PKG_VERSION:=0.12.1
|
2008-02-02 01:48:25 +00:00
|
|
|
PKG_RELEASE:=2
|
2006-12-11 16:59:52 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://www.musicpd.org/uploads/files/
|
2007-08-23 15:25:45 +00:00
|
|
|
PKG_MD5SUM:=a93a390315aacfec061c8df89fb5e35f
|
2006-12-11 16:59:52 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/mpc
|
|
|
|
SECTION:=sound
|
|
|
|
CATEGORY:=Sound
|
|
|
|
TITLE:=Music Player Daemon Console Client
|
|
|
|
URL:=http://www.musicpd.org/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
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
|
|
|
|
|
2006-12-11 16:59:52 +00:00
|
|
|
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/
|
2008-02-02 01:48:25 +00:00
|
|
|
$(INSTALL_BIN) ./files/pls-handler.sh $(1)/usr/bin
|
2006-12-11 16:59:52 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mpc))
|