33d70643db
Libretro is a simple but powerful development interface that allows for the easy creation of emulators, games and multimedia applications that can plug straight into any libretro-compatible frontend. This development interface is open to others so that they can run these pluggable emulator and game cores also in their own programs or devices. FCEUmm (FCEUltra mappers modified) is a NES/Famicom emulator that specializes in extensive mapper support.
26 lines
715 B
Makefile
26 lines
715 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/02/04 22:57:29 jmcneill Exp $
|
|
|
|
DISTNAME= fceumm-libretro-20150204
|
|
PKGNAME= libretro-fceumm-20150204
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://ftp.NetBSD.org/pub/NetBSD/misc/jmcneill/retroarch/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/libretro/libretro-fceumm
|
|
COMMENT= Libretro core based on the FCEUmm emulator
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
WRKSRC= ${WRKDIR}/libretro-fceumm-master
|
|
MAKE_FILE= Makefile.libretro
|
|
USE_TOOLS+= gmake
|
|
|
|
CFLAGS+= -DHAVE_ASPRINTF
|
|
|
|
INSTALLATION_DIRS+= ${PREFIX}/lib/libretro
|
|
|
|
do-install:
|
|
${INSTALL_LIB} ${WRKSRC}/fceumm_libretro.so \
|
|
${DESTDIR}${PREFIX}/lib/libretro/fceumm_libretro.so
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|