1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/games/libretro-fuse/Makefile
Loïc Bartoletti a0f8b13572 games/libretro-*: Update libretro cores and fix path
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
2020-05-16 06:03:41 +00:00

27 lines
530 B
Makefile

# $FreeBSD$
PORTNAME= libretro-fuse
PORTVERSION= 0.20200504
CATEGORIES= games
MAINTAINER= menelkir@itroll.org
COMMENT= Port of the Fuse Unix Spectrum Emulator to libretro
LICENSE= GPLv3
USES= compiler:c++11-lib gmake
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= libretro
GH_PROJECT= fuse-libretro
GH_TAGNAME= ef603d1
PLIST_FILES= lib/libretro/fuse_libretro.so
do-install:
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
${INSTALL_LIB} ${WRKSRC}/fuse_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
.include <bsd.port.mk>