b59cb5def1
Cage is a "kiosk" Wayland compositor, which shows a single maximized application at a time and limits user interaction to that application. https://www.hjdskes.nl/projects/cage/ Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
447 B
Makefile
19 lines
447 B
Makefile
################################################################################
|
|
#
|
|
# cage
|
|
#
|
|
################################################################################
|
|
|
|
CAGE_VERSION = 0.1.1
|
|
CAGE_SITE = $(call github,Hjdskes,cage,v$(CAGE_VERSION))
|
|
CAGE_LICENSE = MIT
|
|
CAGE_DEPENDENCIES = host-pkgconf wlroots
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
CAGE_CONF_OPTS = -Dxwayland=true
|
|
else
|
|
CAGE_CONF_OPTS = -Dxwayland=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|