4dc6bcd180
Update to version 0.1.3, which is a matenance release which does not add any new features but can be built against wlroots 0.13.0. A new build option to toggle man pages is set to always disabled. Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
21 lines
538 B
Makefile
21 lines
538 B
Makefile
################################################################################
|
|
#
|
|
# cage
|
|
#
|
|
################################################################################
|
|
|
|
CAGE_VERSION = 0.1.3
|
|
CAGE_SITE = https://github.com/Hjdskes/cage/releases/download/v$(CAGE_VERSION)
|
|
CAGE_LICENSE = MIT
|
|
CAGE_LICENSE_FILES = LICENSE
|
|
CAGE_DEPENDENCIES = host-pkgconf wlroots
|
|
CAGE_CONF_OPTS = -Dman-pages=disabled
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
CAGE_CONF_OPTS += -Dxwayland=true
|
|
else
|
|
CAGE_CONF_OPTS += -Dxwayland=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|