2009-10-26 08:48:00 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Qi Hardware Inc.
|
|
|
|
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ncmpc
|
2010-10-20 09:31:56 +03:00
|
|
|
PKG_VERSION:=0.18
|
2010-11-21 19:58:29 +02:00
|
|
|
PKG_RELEASE:=1
|
2009-10-26 08:48:00 +02:00
|
|
|
|
2010-10-20 09:31:56 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://downloads.sourceforge.net/musicpd/
|
2009-10-26 08:48:00 +02:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:49:53 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2009-10-26 08:48:00 +02:00
|
|
|
|
2009-12-02 22:37:15 +02:00
|
|
|
TARGET_CFLAGS+= \
|
2010-11-21 19:58:29 +02:00
|
|
|
-std=gnu99
|
2009-12-02 22:37:15 +02:00
|
|
|
|
|
|
|
TARGET_LDFLAGS+= \
|
2011-02-06 21:49:53 +02:00
|
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
2009-12-02 22:37:15 +02:00
|
|
|
|
2009-10-26 08:48:00 +02:00
|
|
|
define Package/ncmpc
|
2011-01-17 05:39:00 +02:00
|
|
|
MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
|
2009-10-26 08:48:00 +02:00
|
|
|
TITLE:=ncmpc
|
|
|
|
SECTION:=sound
|
|
|
|
CATEGORY:=Sound
|
2012-10-12 16:05:02 +03:00
|
|
|
DEPENDS:=+libncursesw $(ICONV_DEPENDS) $(INTL_DEPENDS) +libmpdclient +glib2
|
2010-10-20 09:31:56 +03:00
|
|
|
URL:=http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki
|
2009-10-26 08:48:00 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ncmpc/description
|
|
|
|
ncmpc is a curses client for the Music Player Daemon (MPD)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ncmpc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2010-11-21 19:58:29 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ncmpc $(1)/usr/bin/
|
2009-10-26 08:48:00 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ncmpc))
|