This commit is contained in:
2026-06-02 21:38:47 +02:00
parent d3c949b8a2
commit f51dab51db
70 changed files with 1632 additions and 21 deletions
+22
View File
@@ -0,0 +1,22 @@
version = "1.7.0"
revision = 1
description = "GL Vendor-Neutral Dispatch library"
license = "MIT"
url = "https://gitlab.freedesktop.org/glvnd/libglvnd"
source = tarball(
url=f"https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v{version}/libglvnd-v{version}.tar.gz",
sha256="2b6e15b06aafb4c0b6e2348124808cbd9b291c647299eaaba2e3202f51ff2f3d",
)
host_deps = ["binutils", "gcc", "pkgconf"]
deps = [profile["libc"]]
configure, build, install = meson(
configure_args=[
# Wayland-only: no X11/GLX dispatch.
"-Dx11=disabled",
"-Dglx=disabled",
"-Degl=true",
"-Dgles1=true",
"-Dgles2=true",
],
)