3e41117c64
Release announcement:
5.6.0: https://forum.minetest.net/viewtopic.php?f=18&t=28511
5.6.1: https://forum.minetest.net/viewtopic.php?f=18&t=28703
minetest:
- Update license file hash due to new image file in the project sources.
- IrrlichtMt 1.9.0mt8 is required to build Minetest >= 5.6.1.
- Add xlib_libXi dependency for xinput2 support enabled by default for Linux.
- Remove xlib_libXxf86vm dependency previously used by gamma ramp code [1].
[1] 538c9e5cde
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# minetest_game
|
|
#
|
|
################################################################################
|
|
|
|
MINETEST_GAME_VERSION = 5.6.1
|
|
MINETEST_GAME_SITE = $(call github,minetest,minetest_game,$(MINETEST_GAME_VERSION))
|
|
MINETEST_GAME_LICENSE = LGPL-2.1+ (code), CC-BY-SA-2.0, CC-BY-SA-3.0, \
|
|
CC-BY-SA-4.0, MIT, CC0 1.0, CC-BY-2.0 (mods)
|
|
MINETEST_GAME_LICENSE_FILES = LICENSE.txt \
|
|
mods/beds/license.txt \
|
|
mods/binoculars/license.txt \
|
|
mods/boats/license.txt \
|
|
mods/bones/license.txt \
|
|
mods/bucket/license.txt \
|
|
mods/butterflies/license.txt \
|
|
mods/carts/license.txt \
|
|
mods/creative/license.txt \
|
|
mods/default/license.txt \
|
|
mods/doors/license.txt \
|
|
mods/dungeon_loot/license.txt \
|
|
mods/dye/license.txt \
|
|
mods/env_sounds/license.txt \
|
|
mods/farming/license.txt \
|
|
mods/fire/license.txt \
|
|
mods/fireflies/license.txt \
|
|
mods/flowers/license.txt \
|
|
mods/game_commands/license.txt \
|
|
mods/give_initial_stuff/license.txt \
|
|
mods/keys/license.txt \
|
|
mods/map/license.txt \
|
|
mods/mtg_craftguide/license.txt \
|
|
mods/player_api/license.txt \
|
|
mods/screwdriver/license.txt \
|
|
mods/sethome/license.txt \
|
|
mods/sfinv/license.txt \
|
|
mods/spawn/license.txt \
|
|
mods/stairs/license.txt \
|
|
mods/tnt/license.txt \
|
|
mods/vessels/license.txt \
|
|
mods/walls/license.txt \
|
|
mods/weather/license.txt \
|
|
mods/wool/license.txt \
|
|
mods/xpanes/license.txt
|
|
|
|
define MINETEST_GAME_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/usr/share/minetest/games/minetest_game
|
|
cp -dpfr $(@D)/* $(TARGET_DIR)/usr/share/minetest/games/minetest_game
|
|
endef
|
|
|
|
$(eval $(generic-package))
|