distribution/packages/games/libretro/picodrive/package.mk

34 lines
1 KiB
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
PKG_NAME="picodrive"
PKG_VERSION="97fa8bcd1644aea1fbc841e41d76df3c1bffc949"
2022-02-05 14:23:32 +00:00
PKG_LICENSE="MAME"
PKG_SITE="https://github.com/libretro/picodrive"
2022-04-04 10:41:56 +00:00
PKG_URL="${PKG_SITE}.git"
2022-02-05 14:23:32 +00:00
PKG_DEPENDS_TARGET="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="libretro"
PKG_SHORTDESC="Libretro implementation of PicoDrive. (Sega Megadrive/Genesis/Sega Master System/Sega GameGear/Sega CD/32X)"
PKG_LONGDESC="This is yet another Megadrive / Genesis / Sega CD / Mega CD / 32X / SMS emulator, which was written having ARM-based handheld devices in mind (such as smartphones and handheld consoles like GP2X and Pandora), but also runs on non-ARM little-endian hardware too."
GET_HANDLER_SUPPORT="git"
PKG_BUILD_FLAGS="-gold"
PKG_TOOLCHAIN="make"
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"
PKG_PATCH_DIRS="${PROJECT}"
2022-04-04 10:24:22 +00:00
configure_target() {
:
}
2022-02-05 14:23:32 +00:00
2022-04-04 10:24:22 +00:00
make_target() {
2022-04-04 10:41:56 +00:00
cd ${PKG_BUILD}
# ${PKG_BUILD}/configure --platform=generic
2022-04-04 10:24:22 +00:00
make -f Makefile.libretro
2022-02-05 14:23:32 +00:00
}
2022-04-04 10:24:22 +00:00
makeinstall_target() {
2022-04-04 10:41:56 +00:00
mkdir -p ${INSTALL}/usr/lib/libretro
cp ${PKG_BUILD}/picodrive_libretro.so ${INSTALL}/usr/lib/libretro/
2022-04-04 10:24:22 +00:00
}