73bea8294a
Chocolate Doom is a set of conservative source ports for Doom, Heretic, Hexen and Strife, with a philosophy of preserving the look, feel, and bugs of the vanilla versions of each. http://www.chocolate-doom.org Signed-off-by: Rodrigo Rebello <rprebello@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# chocolate-doom
|
|
#
|
|
################################################################################
|
|
|
|
CHOCOLATE_DOOM_VERSION = 2.2.1
|
|
CHOCOLATE_DOOM_SITE = http://www.chocolate-doom.org/downloads/$(CHOCOLATE_DOOM_VERSION)
|
|
CHOCOLATE_DOOM_LICENSE = GPLv2+
|
|
CHOCOLATE_DOOM_LICENSE_FILES = COPYING
|
|
CHOCOLATE_DOOM_DEPENDENCIES = sdl sdl_mixer sdl_net
|
|
|
|
# We're patching configure.ac, so we need to autoreconf
|
|
CHOCOLATE_DOOM_AUTORECONF = YES
|
|
|
|
# Avoid installing desktop entries, icons, etc.
|
|
CHOCOLATE_DOOM_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-exec
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
# SDL_mixer uses symbols from SDL, but ends up after it on the link
|
|
# cmdline. Fix it by forcing the SDL libs at the very end.
|
|
CHOCOLATE_DOOM_CONF_ENV = LIBS="`$(STAGING_DIR)/usr/bin/sdl-config --static-libs`"
|
|
endif
|
|
|
|
CHOCOLATE_DOOM_CONF_OPTS = \
|
|
--disable-sdltest \
|
|
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
CHOCOLATE_DOOM_DEPENDENCIES += libpng
|
|
CHOCOLATE_DOOM_CONF_OPTS += --with-libpng
|
|
else
|
|
CHOCOLATE_DOOM_CONF_OPTS += --without-libpng
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y)
|
|
CHOCOLATE_DOOM_DEPENDENCIES += libsamplerate
|
|
CHOCOLATE_DOOM_CONF_OPTS += --with-libsamplerate
|
|
else
|
|
CHOCOLATE_DOOM_CONF_OPTS += --without-libsamplerate
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|