d5441d46f6
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
628 B
Makefile
19 lines
628 B
Makefile
################################################################################
|
|
#
|
|
# gmpc
|
|
#
|
|
################################################################################
|
|
|
|
GMPC_VERSION = 11.8.16
|
|
GMPC_SITE = http://download.sarine.nl/Programs/gmpc/$(GMPC_VERSION)
|
|
GMPC_CONF_ENV = ac_cv_path_GOB2=$(GOB2_HOST_BINARY)
|
|
GMPC_CONF_OPTS = --disable-mmkeys --disable-unique
|
|
GMPC_LICENSE = GPL-2.0+
|
|
GMPC_LICENSE_FILES = COPYING
|
|
GMPC_DEPENDENCIES = host-gob2 host-intltool host-pkgconf host-vala \
|
|
libglib2 libgtk2 libmpd libsoup sqlite \
|
|
xlib_libICE xlib_libSM xlib_libX11 \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
|
|
$(eval $(autotools-package))
|