8447f0b277
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>
17 lines
468 B
Makefile
17 lines
468 B
Makefile
################################################################################
|
|
#
|
|
# gnuchess
|
|
#
|
|
################################################################################
|
|
|
|
GNUCHESS_VERSION = 6.2.4
|
|
GNUCHESS_SITE = $(BR2_GNU_MIRROR)/chess
|
|
GNUCHESS_LICENSE = GPL-2.0+
|
|
GNUCHESS_LICENSE_FILES = COPYING
|
|
|
|
GNUCHESS_DEPENDENCIES = host-flex flex
|
|
GNUCHESS_DEPENDENCIES += $(if $(BR2_PACKAGE_READLINE),readline) \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
|
|
$(eval $(autotools-package))
|