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
34 lines
745 B
Makefile
34 lines
745 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libretro-fbalpha
|
|
PORTVERSION= 0.20200504
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= menelkir@itroll.org
|
|
COMMENT= Final Burn Alpha port for libretro
|
|
|
|
LICENSE= FBA
|
|
LICENSE_NAME= FBA
|
|
LICENSE_FILE= ${WRKSRC}/src/license.txt
|
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
|
|
|
USES= compiler:c++11-lib gmake gl
|
|
USE_LDCONFIG= yes
|
|
USE_GL= gl
|
|
|
|
PLIST_FILES= lib/libretro/fbalpha_libretro.so
|
|
|
|
NO_CDROM= Commercial users must seek permission from copyright holders.
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libretro
|
|
GH_PROJECT= fbalpha
|
|
GH_TAGNAME= 84eb9d9
|
|
|
|
MAKEFILE= Makefile.freebsd
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
${INSTALL_LIB} ${WRKSRC}/fbalpha_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
|
|
.include <bsd.port.mk>
|