mirror of
https://github.com/cazfi/meta-games.git
synced 2026-01-29 17:08:42 +01:00
* Latest oe-core warns with 'Recipe LICENSE includes obsolete licenses GPLv2 [obsolete-license]' * Auto changed by oe-cores's script scripts/contrib/convert-spdx-licenses.py Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
55 lines
748 B
BlitzBasic
55 lines
748 B
BlitzBasic
|
|
DESCRIPTION = "Games image to be used on USB stick (development image)"
|
|
|
|
IMAGE_LINGUAS = " "
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
|
|
inherit core-image
|
|
|
|
IMAGE_ROOTFS_SIZE = "8192"
|
|
|
|
IMAGE_FEATURES += "package-management x11-base x11-sato ssh-server-dropbear"
|
|
|
|
IMAGE_FSTYPES += "wic.vmdk"
|
|
|
|
FREECIV = "\
|
|
freeciv-server \
|
|
freeciv-gtk3.22 \
|
|
freeciv-sdl2 \
|
|
freeciv-qt \
|
|
"
|
|
|
|
GNOME_GAMES = "\
|
|
gnome-chess \
|
|
gnome-robots \
|
|
"
|
|
|
|
GAMELIST = "\
|
|
packagegroup-core-x11-sato-games \
|
|
${GNOME_GAMES} \
|
|
${FREECIV} \
|
|
etr \
|
|
pingus \
|
|
wesnoth \
|
|
supertuxkart \
|
|
supertux2 \
|
|
astromenace \
|
|
maelstrom \
|
|
chromium-bsu \
|
|
atanks \
|
|
"
|
|
|
|
TOOLS = "\
|
|
nano \
|
|
gdb \
|
|
strace \
|
|
"
|
|
|
|
IMAGE_INSTALL += " \
|
|
packagegroup-core-boot \
|
|
${CORE_IMAGE_EXTRA_INSTALL} \
|
|
${GAMELIST} \
|
|
${TOOLS} \
|
|
"
|