mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
19d68720f1
Thanks again to jbeich for noticing various things I overlooked. Reviewed by: acm, ashish, eduardo, ehaupt, eugen, jbeich, martymac, mat, nobukata, sunpoet, tagattie, yuri, arrowd, kde Differential Revision: https://reviews.freebsd.org/D45141
32 lines
753 B
Makefile
32 lines
753 B
Makefile
PORTNAME= libretro-bluemsx
|
|
DISTVERSION= 0.20230417
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Port of blueMSX to the libretro API
|
|
WWW= https://github.com/libretro/blueMSX-libretro
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= compiler:c++11-lib gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libretro
|
|
GH_PROJECT= blueMSX-libretro
|
|
GH_TAGNAME= e21bf74bddb79ad1bbe20b4d964e7515269c669b
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= lib/libretro/bluemsx_libretro.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${COMPILER_TYPE} == clang
|
|
CFLAGS+= -Wno-error=int-conversion
|
|
CFLAGS+= -Wno-error=incompatible-function-pointer-types
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro
|
|
${INSTALL_LIB} ${WRKSRC}/bluemsx_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro
|
|
|
|
.include <bsd.port.post.mk>
|