makedepends=()
run=(libglvnd)

description="EGL External Platform interface"
url="https://github.com/NVIDIA/eglexternalplatform"

packager="Great-OS Team"
maintainer="Great-OS Team"

name="eglexternalplatform"
version="1.2.1"
release=1

PKGMK_KEEP_SOURCES="no"
source=(https://github.com/NVIDIA/eglexternalplatform/archive/refs/tags/$version.tar.gz)

build() { 
  meson setup \
    --prefix=/usr \
    --includedir /usr/include/EGL \
    $name-$version build
  meson compile -C build
  meson install -C build --destdir "$PKG"
}
