This version is the same as 1.5.0 with a fix for Android, the 1.5.0 changelog is here: https://github.com/bvschaik/julius/releases/tag/v1.5.0
32 lines
730 B
Makefile
32 lines
730 B
Makefile
# $OpenBSD: Makefile,v 1.15 2020/10/28 22:46:59 bcallah Exp $
|
|
|
|
V = 1.5.1
|
|
COMMENT = open source re-implementation of Caesar III game engine
|
|
DISTNAME = julius-${V}
|
|
EXTRACT_SUFX = -source.tar.gz
|
|
CATEGORIES = games x11
|
|
|
|
HOMEPAGE = https://github.com/bvschaik/julius
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# AGPLv3 only
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += SDL2 SDL2_mixer c m png pthread z
|
|
|
|
MASTER_SITES = https://github.com/bvschaik/julius/releases/download/v${V}/
|
|
|
|
MODULES = devel/cmake
|
|
|
|
LIB_DEPENDS = devel/sdl2-mixer \
|
|
graphics/png
|
|
|
|
RUN_DEPENDS = devel/desktop-file-utils \
|
|
x11/gtk+3,-guic
|
|
|
|
# Talk to upstream about this?
|
|
pre-configure:
|
|
sed -i 's,--coverage,,g' ${WRKSRC}/test/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|