1
0
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
Lakka-rk322x/packages/emulation/libretro-common/package.mk
Matthias Reichl 4c5b778415 libretro-common: initial package
This is a dependency of newer game.libretro versions

Signed-off-by: Matthias Reichl <hias@horus.com>
2022-11-12 14:58:36 +01:00

17 lines
699 B
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libretro-common"
PKG_VERSION="50c15a88eb741cbe675743a282d8cc4c89421e3f"
PKG_SHA256="042986fad22dc37188df7a186d17a258edfe8e552353f9b509a47418e8dfa623"
PKG_LICENSE="Public domain"
PKG_SITE="https://github.com/libretro/libretro-common"
PKG_URL="https://github.com/libretro/libretro-common/archive/${PKG_VERSION}.tar.gz"
PKG_LONGDESC="Reusable coding blocks useful for libretro core and frontend development"
PKG_TOOLCHAIN="manual"
makeinstall_target() {
mkdir -p "${SYSROOT_PREFIX}/usr/include/${PKG_NAME}"
cp -pR ${PKG_BUILD}/include/* "${SYSROOT_PREFIX}/usr/include/${PKG_NAME}/"
}