wayland-protocols: add package
authorDaniel Golle <daniel@makrotopia.org>
Sun, 22 Aug 2021 20:04:24 +0000 (21:04 +0100)
committerDaniel Golle <daniel@makrotopia.org>
Wed, 6 Oct 2021 23:09:16 +0000 (00:09 +0100)
Add wayland protocols which are required to build wayland clients and
servers.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
frameworks/wayland-protocols/Makefile [new file with mode: 0644]

diff --git a/frameworks/wayland-protocols/Makefile b/frameworks/wayland-protocols/Makefile
new file mode 100644 (file)
index 0000000..b5a159e
--- /dev/null
@@ -0,0 +1,49 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=wayland-protocols
+PKG_VERSION:=1.21
+PKG_RELEASE:=$(AUTORELEASE)
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
+PKG_SOURCE_URL:=https://wayland.freedesktop.org/releases/
+PKG_HASH:=b99945842d8be18817c26ee77dafa157883af89268e15f4a5a1a1ff3ffa4cde5
+
+PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
+PKG_LICENSE:=MIT
+PKG_LICENSE_FILES:=COPYING
+
+PKG_INSTALL:=1
+
+PKG_BUILD_DEPENDS:=wayland
+
+include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/meson.mk
+
+MESON_ARGS += \
+       -Dtests=false
+
+define Package/wayland-protocols
+  SECTION:=libs
+  CATEGORY:=Video
+  SUBMENU:=Frameworks and Toolkits
+  TITLE:=wayland-protocols
+  URL:=https://wayland.freedesktop.org/
+  PKGARCH:=all
+endef
+
+define Package/wayland-protocols/description
+endef
+
+define Build/InstallDev
+       $(INSTALL_DIR) $(1)/usr/share/wayland-protocols
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/wayland-protocols/* $(1)/usr/share/wayland-protocols
+       $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
+endef
+
+define Package/wayland-protocols/install
+       $(INSTALL_DIR) $(1)/usr/share/wayland-protocols
+       $(CP) $(PKG_INSTALL_DIR)/usr/share/wayland-protocols/* $(1)/usr/share/wayland-protocols
+endef
+
+$(eval $(call BuildPackage,wayland-protocols))