25 lines
549 B
Makefile
25 lines
549 B
Makefile
# $OpenBSD: Makefile,v 1.9 2021/02/25 22:26:02 sthen Exp $
|
|
|
|
COMMENT = hexagonal tile-based puzzle game
|
|
DISTNAME = hex-a-hop-1.1.0
|
|
CATEGORIES = games
|
|
HOMEPAGE = http://hexahop.sourceforge.net
|
|
REVISION = 1
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = SDL SDL_mixer SDL_ttf c m pthread ${COMPILER_LIBCXX}
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=hexahop/}
|
|
|
|
LIB_DEPENDS = devel/sdl-mixer \
|
|
devel/sdl-ttf
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
FIX_CRLF_FILES = src/hex_puzzzle.cpp src/text.cpp
|
|
|
|
.include <bsd.port.mk>
|