From patchwork Sat Jan 6 07:39:50 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 37417 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2DEC8C46CD2 for ; Sat, 6 Jan 2024 07:40:12 +0000 (UTC) Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) by mx.groups.io with SMTP id smtpd.web10.44486.1704526802318277840 for ; Fri, 05 Jan 2024 23:40:02 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.20, mailfrom: f_l_k@t-online.de) Received: from fwd76.aul.t-online.de (fwd76.aul.t-online.de [10.223.144.102]) by mailout08.t-online.de (Postfix) with SMTP id 0C4286B6D for ; Sat, 6 Jan 2024 08:40:00 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.174.51]) by fwd76.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rM1Hh-4BeqHZ0; Sat, 6 Jan 2024 08:39:57 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCHv2] glad: add recipe Date: Sat, 6 Jan 2024 08:39:50 +0100 Message-ID: <20240106073950.2707-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1704526797-FAFFA94C-047416F0/0/0 CLEAN NORMAL X-TOI-MSGID: 7398e9a7-1769-490b-9b06-967edf64a38f List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 06 Jan 2024 07:40:12 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108062 glad is a required dependency for libplacebo Signed-off-by: Markus Volk --- meta-oe/recipes-graphics/glad/glad_2.0.4.bb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 meta-oe/recipes-graphics/glad/glad_2.0.4.bb diff --git a/meta-oe/recipes-graphics/glad/glad_2.0.4.bb b/meta-oe/recipes-graphics/glad/glad_2.0.4.bb new file mode 100644 index 000000000..69fe0709a --- /dev/null +++ b/meta-oe/recipes-graphics/glad/glad_2.0.4.bb @@ -0,0 +1,12 @@ +SUMMARY = "Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specifications for multiple languages." +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ae570f26774ac096cff8f992091a223c" + +SRC_URI = "git://github.com/Dav1dde/glad.git;protocol=https;branch=glad2" +SRCREV = "d08b1aa01f8fe57498f04d47b5fa8c48725be877" +S = "${WORKDIR}/git" + +inherit setuptools3 + +BBCLASSEXTEND = "native nativesdk" +RDEPENDS:${PN} = "python3 python3-jinja2"