40ed32a9f8
Submitted by: voidanix <voidanix@420blaze.it> Differential Revision: https://reviews.freebsd.org/D21045
37 lines
932 B
Makefile
37 lines
932 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= multimc
|
|
DISTVERSION= 0.6.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= games java
|
|
|
|
MAINTAINER= me@tsundoku.ne.jp
|
|
COMMENT= Minecraft launcher with the ability to manage multiple instances
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.md
|
|
|
|
RUN_DEPENDS= lwjgl>=2.9.3:games/lwjgl
|
|
|
|
USES= cmake compiler:c++14-lang qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= MultiMC
|
|
GH_PROJECT= MultiMC5
|
|
GH_TUPLE= MultiMC:libnbtplusplus:508eda8:libnbtplusplus/libraries/libnbtplusplus \
|
|
MultiMC:quazip:3691d57:quazip/libraries/quazip
|
|
USE_LDCONFIG= yes
|
|
USE_JAVA= 1.8+
|
|
USE_QT= core concurrent gui network testlib_build widgets xml \
|
|
buildtools_build qmake_build
|
|
|
|
CMAKE_ARGS= -DMultiMC_LAYOUT="lin-system"
|
|
CMAKE_OFF= MultiMC_UPDATER
|
|
CXXFLAGS+= -Wno-inconsistent-missing-override \
|
|
-Wno-delete-non-virtual-dtor \
|
|
-DLWJGL_DIR='\"${LOCALBASE}/lib/lwjgl\"'
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libMultiMC_*.so
|
|
|
|
.include <bsd.port.mk>
|