4ab3f51827
Here are the big features in Solarus 1.6: * OpenGL backend and support for GLSL shaders (by Stdgregwar and Vlag) * Support for external script editor of your choice. Zerobrane integration: autocompletion, debug breakpoints, stack inspection (by Stdgregwar) * Multiple improvements in map editor, including the much-requested contour generator, tile replacement and support for multiple tilesets * Multiple improvements in tileset editor, including multiple selection, custom frame count for animated tile patterns * Multiple improvements in sprite editor * Data import from other quests * Beautiful new free tilesets (Zoria by DragonDePlatino, Ocean’s Heart by Max Mraz) * Free pixel fonts (by Wekhter) * Custom hero states in Lua to allow advanced customization of the hero * Tons of new features in the Lua API Last but not least: Solarus 1.6 is fully compatible with Solarus 1.5 quests. You have no work to do to upgrade your project to Solarus 1.6. Starting with version 1.6, the Solarus engine now require OpenGL (GLX) support. The OpenGL ES support doesn't build, this issue has been reported upstream [1]. Update the download url since solarus no longer use github. Rebase patch. See: http://www.solarus-games.org/2018/12/22/solarus-1-6-released [1] https://gitlab.com/solarus-games/solarus/issues/1324 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
738 B
Makefile
25 lines
738 B
Makefile
################################################################################
|
|
#
|
|
# solarus
|
|
#
|
|
################################################################################
|
|
|
|
SOLARUS_VERSION = 1.6.0
|
|
SOLARUS_SITE = http://www.solarus-games.org/downloads/solarus
|
|
SOLARUS_SOURCE = solarus-$(SOLARUS_VERSION)-src.tar.gz
|
|
|
|
SOLARUS_LICENSE = GPL-3.0 (code), CC-BY-SA-4.0 (Solarus logos and icons), \
|
|
CC-BY-SA-3.0 (GUI icons)
|
|
SOLARUS_LICENSE_FILES = license.txt license_gpl.txt
|
|
|
|
# Install libsolarus.so
|
|
SOLARUS_INSTALL_STAGING = YES
|
|
|
|
SOLARUS_DEPENDENCIES = libgl libmodplug libogg libvorbis luajit openal physfs sdl2 \
|
|
sdl2_image sdl2_ttf
|
|
|
|
# Disable launcher GUI (requires Qt5)
|
|
SOLARUS_CONF_OPTS = -DSOLARUS_GUI=OFF
|
|
|
|
$(eval $(cmake-package))
|