package/flare-game: new package

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018.05.x
Romain Naour 2018-03-19 22:19:03 +01:00 committed by Thomas Petazzoni
parent 4316cad63d
commit e930a61c21
5 changed files with 36 additions and 0 deletions

View File

@ -1592,6 +1592,7 @@ F: package/efl/
F: package/enlightenment/
F: package/expedite/
F: package/flare-engine/
F: package/flare-game/
F: package/irrlicht/
F: package/liblinear/
F: package/lensfun/

View File

@ -235,6 +235,7 @@ menu "Games"
source "package/chocolate-doom/Config.in"
source "package/doom-wad/Config.in"
source "package/flare-engine/Config.in"
source "package/flare-game/Config.in"
source "package/gnuchess/Config.in"
source "package/lbreakout2/Config.in"
source "package/ltris/Config.in"

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_FLARE_GAME
bool "flare-game"
depends on BR2_PACKAGE_FLARE_ENGINE
help
Flare is an open source, 2D action RPG licensed under the
GPL3 license. Its game play can be likened to the games in
the Diablo series.
This package, flare-game, only contains the game data. The
game engine itself is part of a separate package,
flame-engine.
http://flarerpg.org

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 5c8e9d72fcbe59f1861f79ac7b76ceffe3ec61d1df241c32d9133fe158fba4c1 flare-game-v1.0.tar.gz
sha256 9fce5eb663f136449e11293a871ed96db5ba579116a927fc6a70dd20a4a5b9e6 README

View File

@ -0,0 +1,18 @@
################################################################################
#
# flare-game
#
################################################################################
FLARE_GAME_VERSION = v1.0
FLARE_GAME_SITE = $(call github,clintbellanger,flare-game,$(FLARE_GAME_VERSION))
FLARE_GAME_LICENSE = CC-BY-SA-3.0 (data files), GPL-2.0 (GNU Unifont), \
OFL-1.1 (Liberation Sans)
FLARE_GAME_LICENSE_FILES = README
FLARE_GAME_DEPENDENCIES = flare-engine
# Don't use /usr/share/games
FLARE_GAME_CONF_OPTS += -DDATADIR=share/flare
$(eval $(cmake-package))