mirror of
https://github.com/openwrt/video.git
synced 2026-05-31 06:51:54 +08:00
4fed050411
Update PKG_SOURCE_VERSION to f60e50e887d3c49e91ac9b06d8199b36152632fa to pick up upstream fixes accumulated since the 2024-11-06 snapshot. Add libgst1gl to runtime DEPENDS - upstream now uses GstGL helpers. kmscube has no tagged releases; track upstream master. Link: https://gitlab.freedesktop.org/mesa/kmscube/-/commits/master Signed-off-by: Daniel Golle <daniel@makrotopia.org>
38 lines
959 B
Makefile
38 lines
959 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=kmscube
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2025-10-24
|
|
PKG_SOURCE_VERSION:=f60e50e887d3c49e91ac9b06d8199b36152632fa
|
|
PKG_SOURCE_URL:=https://gitlab.freedesktop.org/mesa/kmscube
|
|
PKG_MIRROR_HASH:=480a9ee8d761be990b2296317562d4f1e2be84acf43a19240aaaf1df09039773
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
|
|
define Package/kmscube
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Video
|
|
DEPENDS:=+glib2 +libmesa +libpng +gstreamer1-plugins-base +libgstreamer1 +libgst1allocators +libgst1video +libgst1app +libgst1gl
|
|
TITLE:=kmscube KMS/DRM/EGL example
|
|
URL:=https://www.mesa3d.org
|
|
endef
|
|
|
|
define Package/kmscube/description
|
|
endef
|
|
|
|
define Package/kmscube/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,kmscube))
|