mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
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
26 lines
499 B
Makefile
26 lines
499 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libretro-fceumm
|
|
PORTVERSION= 0.20200504
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= menelkir@itroll.org
|
|
COMMENT= Unofficial build of FCEU Ultra by CaH4e3
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= compiler:c++11-lib gmake
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libretro
|
|
GH_TAGNAME= 68b8f0e
|
|
|
|
PLIST_FILES= lib/libretro/fceumm_libretro.so
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
${INSTALL_LIB} ${WRKSRC}/fceumm_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
|
|
|
|
.include <bsd.port.mk>
|