a0f8b13572
Update cores and fix path. Some users complain than cores are installed in libexec instead of lib where RetroArch looks. So emulators will work out of box. PR: 246067 Submitted by: menelkir@itroll.org (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D24820
29 lines
581 B
Makefile
29 lines
581 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libretro-pcsx_rearmed
|
|
PORTVERSION= 0.20200504
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= menelkir@itroll.org
|
|
COMMENT= Fork of PCSX with ARM optimizations
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= compiler:c++11-lib gmake gl
|
|
USE_LDCONFIG= yes
|
|
USE_GL= gl
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libretro
|
|
GH_PROJECT= pcsx_rearmed
|
|
GH_TAGNAME= 8fda5dd
|
|
|
|
PLIST_FILES= lib/libretro/pcsx_rearmed_libretro.so
|
|
|
|
MAKEFILE= Makefile.libretro
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
${INSTALL_LIB} ${WRKSRC}/pcsx_rearmed_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
|
|
.include <bsd.port.mk>
|