9af20d6e1e
--enable-sound has been dropped since version 1.2.4 and
https://sourceforge.net/p/lgames/code/432:
configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --enable-static, --disable-shared, --enable-sound
Fixes: 61848605cd
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
27 lines
804 B
Makefile
27 lines
804 B
Makefile
################################################################################
|
|
#
|
|
# ltris
|
|
#
|
|
################################################################################
|
|
|
|
LTRIS_SITE = http://downloads.sourceforge.net/lgames/ltris
|
|
LTRIS_VERSION = 1.2.7
|
|
LTRIS_LICENSE = GPL-2.0+
|
|
LTRIS_LICENSE_FILES = COPYING
|
|
|
|
LTRIS_DEPENDENCIES = sdl $(TARGET_NLS_DEPENDENCIES)
|
|
LTRIS_LIBS = $(TARGET_NLS_LIBS)
|
|
|
|
LTRIS_CONF_ENV = \
|
|
SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \
|
|
LIBS="$(LTRIS_LIBS)"
|
|
|
|
ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y)
|
|
LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf
|
|
# configure script does NOT use pkg-config to figure out how to link
|
|
# with sdl_mixer, breaking static linking as sdl_mixer can use libmad
|
|
LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer`
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|