7377feafaf
This new release includes a number of improvements. Release notes: https://wpewebkit.org/release/cog-0.12.0.html Small tweaks were needed due to the "fdo" platform backend being renamed as "wl"; the symbol is kept as BR2_PACKAGE_COG_PLATFORM_FDO to avoid breaking existing configurations. Also the new version supports building with libsoup3, which is not yet packaged in Buildroot, so -DUSE_SOUP2=ON is always passed to CMake. Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Tested-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# cog
|
|
#
|
|
################################################################################
|
|
|
|
COG_VERSION = 0.12.0
|
|
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))' \
|
|
-DUSE_SOUP2=ON
|
|
|
|
ifeq ($(BR2_PACKAGE_COG_PLATFORM_FDO),y)
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_WL=ON
|
|
COG_DEPENDENCIES += libxkbcommon wayland-protocols
|
|
else
|
|
COG_CONF_OPTS += -DCOG_PLATFORM_WL=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))
|