Files
Daniel Golle be41d2f4dc wpebackend-fdo: update to version 1.16.1
* Support newer versions of Mesa where format/modifier events have
   been deprecated by implementing the needed parts of the DMA-BUF
   feedback protocol in the nested compositor.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2026-05-27 19:27:26 +01:00

52 lines
1.4 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=wpebackend-fdo
PKG_VERSION:=1.16.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://wpewebkit.org/releases
PKG_HASH:=544ae14012f8e7e426b8cb522eb0aaaac831ad7c35601d1cf31d37670e0ebb3b
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=BSD-2-clause
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_DEPENDS:=mesa
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/meson.mk
define Package/wpebackend-fdo
SECTION:=libs
CATEGORY:=Libraries
TITLE:=WPE's backend based on a freedesktop.org stack
URL:=https://wpewebkit.org/
DEPENDS:=+glib2 +libepoxy +libstdcpp +libwayland +libwpe
endef
define Package/wpebackend-fdo/description
An Open Source WebKit port for Linux-based embedded devices designed
with flexibility and hardware acceleration in mind, leveraging common 3D
graphics APIs for best performance.
endef
MESON_ARGS += \
-Dbuild_docs=false
define Package/wpebackend-fdo/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/wpe-fdo-1.0/wpe
$(CP) $(PKG_INSTALL_DIR)/usr/include/wpe-fdo-1.0/wpe/* $(1)/usr/include/wpe-fdo-1.0/wpe
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
endef
$(eval $(call BuildPackage,wpebackend-fdo))