mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
https://gitlab.freedesktop.org/libdecor/libdecor/-/commits/0.2.5 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
31 lines
868 B
Makefile
31 lines
868 B
Makefile
################################################################################
|
|
#
|
|
# libdecor
|
|
#
|
|
################################################################################
|
|
|
|
LIBDECOR_VERSION = 0.2.5
|
|
LIBDECOR_SOURCE = libdecor-$(LIBDECOR_VERSION).tar.xz
|
|
LIBDECOR_SITE = https://gitlab.freedesktop.org/libdecor/libdecor/-/releases/$(LIBDECOR_VERSION)/downloads
|
|
LIBDECOR_LICENSE = MIT
|
|
LIBDECOR_LICENSE_FILES = LICENSE
|
|
LIBDECOR_INSTALL_STAGING = YES
|
|
LIBDECOR_DEPENDENCIES = cairo pango wayland wayland-protocols
|
|
LIBDECOR_CONF_OPTS = -Ddemo=false
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
LIBDECOR_CONF_OPTS += -Ddbus=enabled
|
|
LIBDECOR_DEPENDENCIES += dbus
|
|
else
|
|
LIBDECOR_CONF_OPTS += -Ddbus=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK3),y)
|
|
LIBDECOR_CONF_OPTS += -Dgtk=enabled
|
|
LIBDECOR_DEPENDENCIES += libgtk3
|
|
else
|
|
LIBDECOR_CONF_OPTS += -Dgtk=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|