9a366a15fd
cage v0.1.1 can't build with wlroots 0.10.1, as it uses a set of wlroots API that are no longer available. Moving to latest upstream version fixes the issue. Also: - added license file information - updated license file hash Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
510 B
Makefile
20 lines
510 B
Makefile
################################################################################
|
|
#
|
|
# cage
|
|
#
|
|
################################################################################
|
|
|
|
CAGE_VERSION = 6eb693c05b5b34d4ed5ad8234a9f79a14ac8e07d
|
|
CAGE_SITE = $(call github,Hjdskes,cage,$(CAGE_VERSION))
|
|
CAGE_LICENSE = MIT
|
|
CAGE_LICENSE_FILES = LICENSE
|
|
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))
|