56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2020/11/05 09:08:13 ryoon Exp $
|
|
|
|
DISTNAME= openrct2-0.2.4
|
|
PKGREVISION= 10
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=OpenRCT2/}
|
|
GITHUB_PROJECT= OpenRCT2
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/OpenRCT2/OpenRCT2/
|
|
COMMENT= Open source reimplementation of RollerCoaster Tycoon 2
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_CMAKE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++17
|
|
|
|
# C++17
|
|
GCC_REQD+= 7
|
|
|
|
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release"
|
|
|
|
CXXFLAGS+= -DORCT2_RESOURCE_DIR=\"${PREFIX}/share/openrct2\"
|
|
|
|
CONFIGURE_DIRS= build
|
|
CMAKE_ARG_PATH= ..
|
|
|
|
# XXX it cannot be built without an Internet connection.
|
|
# Fails during install stage:
|
|
# CMake Error at cmake_install.cmake:48 (file):
|
|
# file DOWNLOAD HASH mismatch
|
|
#
|
|
# for file: [/wrk/games/openrct2/work/.destdir/p/share/openrct2/title/title-sequences.zip]
|
|
# expected hash: [304d13a126c15bf2c86ff13b81a2f2cc1856ac8d]
|
|
# actual hash: [da39a3ee5e6b4b0d3255bfef95601890afd80709]
|
|
# status: [6;"Couldn't resolve host name"]
|
|
#
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/build
|
|
|
|
.include "../../archivers/libzip/buildlink3.mk"
|
|
.include "../../audio/speexdsp/buildlink3.mk"
|
|
.include "../../devel/SDL2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../fonts/fontconfig/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../textproc/icu/buildlink3.mk"
|
|
.include "../../textproc/jansson/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|