kumquat-buildroot/package/minetest-game/minetest-game.mk
Romain Naour 70fb634c8d package/minetest: bump to version 5.0.0
"5.0.0 is a breaking release and not compatible to the 0.4 series", so
update minetest-game package in the same commit.

Update GCC dependency to 4.9+.

Use LICENSE.txt as license file instead of the README.md.

Update license files hash for minetest-game after checking what's changed.
Add new license files for minetest-game.

https://forum.minetest.net/viewtopic.php?t=22278

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-03-12 21:53:49 +01:00

47 lines
1.4 KiB
Makefile

################################################################################
#
# minetest_game
#
################################################################################
MINETEST_GAME_VERSION = 5.0.0
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/farming/license.txt \
mods/fire/license.txt \
mods/flowers/license.txt \
mods/game_commands/license.txt \
mods/give_initial_stuff/license.txt \
mods/map/license.txt \
mods/player_api/license.txt \
mods/screwdriver/license.txt \
mods/sethome/license.txt \
mods/sfinv/license.txt \
mods/stairs/license.txt \
mods/tnt/license.txt \
mods/vessels/license.txt \
mods/walls/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))