package: add gmpc (gtk musicpd client) package

This commit is contained in:
Peter Korsgaard 2008-12-28 20:54:40 +00:00
parent 3904aeee89
commit 960bbc63ba
3 changed files with 33 additions and 0 deletions

View File

@ -372,6 +372,7 @@ source "package/alsamixergui/Config.in"
source "package/dillo/Config.in"
source "package/docker/Config.in"
source "package/gqview/Config.in"
source "package/gmpc/Config.in"
source "package/gtkperf/Config.in"
source "package/leafpad/Config.in"
source "package/midori/Config.in"

15
package/gmpc/Config.in Normal file
View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_GMPC
bool "gmpc"
depends on BR2_PACKAGE_LIBGTK2
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_GETTEXT
select BR2_PACKAGE_LIBINTL
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
select BR2_PACKAGE_PKGCONFIG
select BR2_PACKAGE_LIBMPD
select BR2_PACKAGE_LIBCURL
help
Gnome Music Player Client is a GNOME/GTK2.2 client for
Music Player Daemon.
http://gmpcwiki.sarine.nl/index.php?title=GMPC

17
package/gmpc/gmpc.mk Normal file
View File

@ -0,0 +1,17 @@
#############################################################
#
# gmpc
#
#############################################################
GMPC_VERSION = 0.17.0
GMPC_SOURCE = gmpc-$(GMPC_VERSION).tar.gz
GMPC_SITE = http://download.sarine.nl/download/Programs/gmpc/$(GMPC_VERSION)/
GMPC_LIBTOOL_PATCH = NO
GMPC_CONF_ENV = ac_cv_lib_curl_curl_global_init=yes
GMPC_CONF_OPT = --disable-mmkeys $(DISABLE_NLS)
GMPC_DEPENDENCIES = libglib2 libgtk2 libcurl libmpd
$(eval $(call AUTOTARGETS,package,gmpc))