mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 13:06:17 +00:00
11e41d8cab
- update RetroArch to 1.19.0 - update libretro cores to latest commits/hash - retroarch: drop patches merged upstream - stella: rebase patch
20 lines
528 B
Makefile
20 lines
528 B
Makefile
PKG_NAME="mrboom"
|
|
PKG_VERSION="a7af125dc9ef65c9a1b43136a75374bbac5458ee"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/libretro/mrboom-libretro"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Mr.Boom is a 8 players Bomberman clone for RetroArch/Libretro"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET=""
|
|
|
|
if target_has_feature neon ; then
|
|
PKG_MAKE_OPTS_TARGET+=" HAVE_NEON=1"
|
|
fi
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v mrboom_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|