adf8dd81f9
Note: there is some code for arm in cpu/sh2/compiler.c, but it does not look as though the code detects ARCH properly. Approved by: portmgr (tier-2 blanket)
31 lines
654 B
Makefile
31 lines
654 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libretro-picodrive
|
|
PORTVERSION= 0.20200504
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= menelkir@itroll.org
|
|
COMMENT= Fast MegaDrive/MegaCD/32X emulator
|
|
|
|
LICENSE= PD
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= all archs except x86 report error: unsupported arch
|
|
|
|
USES= compiler:c++11-lib gmake
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libretro
|
|
GH_PROJECT= picodrive
|
|
GH_TAGNAME= 600894e
|
|
|
|
PLIST_FILES= lib/libretro/picodrive_libretro.so
|
|
|
|
MAKEFILE= Makefile.libretro
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
${INSTALL_LIB} ${WRKSRC}/picodrive_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
|
|
.include <bsd.port.mk>
|