e96a0720ff
GSplus is an Apple IIgs emulator. It's an open-source project based on the KEGS and GSPort emulators. It supports fullscreen, joysticks and audio through the SDL2 library across platforms. ok bcallah@ "looks good to me" @jca inputs and fixes from bcallah@ and jca@
40 lines
975 B
Makefile
40 lines
975 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2020/03/12 12:24:08 solene Exp $
|
|
|
|
COMMENT = Apple IIgs emulator
|
|
|
|
GH_ACCOUNT = digarok
|
|
GH_PROJECT = gsplus
|
|
GH_COMMIT = 480572054518112647c8fae5d7ea7046a6d6ecfb
|
|
DISTNAME = ${GH_PROJECT}-20190816
|
|
|
|
CATEGORIES = emulators
|
|
|
|
HOMEPAGE = https://apple2.gs/plus/
|
|
|
|
MAINTAINER = Solene Rapenne <solene@perso.pw>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} SDL2 SDL2_image c edit freetype m z
|
|
|
|
MODULES = devel/cmake
|
|
|
|
BUILD_DEPENDS = devel/re2c
|
|
|
|
LIB_DEPENDS = devel/sdl2-image
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
NO_TEST = Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/GSplus ${PREFIX}/bin/GSplus
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/gsplus/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gsplus/
|
|
${INSTALL_DATA} ${WRKSRC}/src/assets/* ${PREFIX}/share/gsplus
|
|
${INSTALL_DATA} ${WRKSRC}/doc/gsplusmanual.pdf ${PREFIX}/share/doc/gsplus
|
|
${INSTALL_DATA} ${WRKSRC}/doc/README.txt ${PREFIX}/share/doc/gsplus
|
|
|
|
.include <bsd.port.mk>
|