59a19eb4c8
Update to version 0.10.1, which fixes the build when the DRM platform module is enabled, fixes handling of absolute pointer events, and makes the headless platform optional. Although the headless platform is optional, Buildroot keeps it enabled unconditionally (as previously) because the wpebackend-fdo dependency is always needed anyway because Buildroot does not include any other WPE backend. Release notes: https://wpewebkit.org/release/cog-0.10.1.html Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# cog
|
|
#
|
|
################################################################################
|
|
|
|
COG_VERSION = 0.10.1
|
|
COG_SITE = https://wpewebkit.org/releases
|
|
COG_SOURCE = cog-$(COG_VERSION).tar.xz
|
|
COG_INSTALL_STAGING = YES
|
|
COG_DEPENDENCIES = dbus wpewebkit wpebackend-fdo wayland
|
|
COG_LICENSE = MIT
|
|
COG_LICENSE_FILES = COPYING
|
|
COG_CONF_OPTS = \
|
|
-DCOG_BUILD_PROGRAMS=ON \
|
|
-DCOG_PLATFORM_HEADLESS=ON \
|
|
-DCOG_WESTON_DIRECT_DISPLAY=OFF \
|
|
-DINSTALL_MAN_PAGES=OFF \
|
|
-DCOG_HOME_URI='$(call qstrip,$(BR2_PACKAGE_COG_PROGRAMS_HOME_URI))'
|
|
|
|
ifeq ($(BR2_PACKAGE_COG_PLATFORM_FDO),y)
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_FDO=ON
|
|
COG_DEPENDENCIES += libxkbcommon wayland-protocols
|
|
else
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_FDO=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_COG_PLATFORM_DRM),y)
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_DRM=ON
|
|
COG_DEPENDENCIES += libdrm libinput
|
|
else
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_DRM=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_COG_USE_SYSTEM_DBUS),y)
|
|
COG_CONF_OPTS += -DCOG_DBUS_SYSTEM_BUS=ON
|
|
else
|
|
COG_CONF_OPTS += -DCOG_DBUS_SYSTEM_BUS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|