15 lines
510 B
Makefile
15 lines
510 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2022-present - The JELOS Project (https://github.com/JustEnoughLinuxOS)
|
|
|
|
PKG_NAME="arduous-lr"
|
|
PKG_VERSION="aed50506962df6f965748e888b3fe7027ddb410d"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/libretro/arduous"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_SHORTDESC="A Libretro emulator core for the Arduboy"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp arduous_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|