mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-03 18:05:19 +00:00
18 lines
635 B
Makefile
18 lines
635 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2023-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="glad"
|
|
PKG_VERSION="2.0.6"
|
|
PKG_SHA256="61a70234dc7da467cceb07fcdd6dec1213d6143a1b6b19ccc5d7b64cc247ea47"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://glad.dav1d.de"
|
|
PKG_URL="https://github.com/Dav1dde/glad/archive/refs/tags/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_host() {
|
|
export DONT_BUILD_LEGACY_PYC=1
|
|
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN}
|
|
}
|