27a5ac4f07
Hex-a-Hop is a hexagonal tile-based puzzle game with one simple goal: destroy all green tiles! There are infinite undos and no time limits -- you just have to find a way to destroy all the green tiles and step on a safe tile at the end. ok landry
24 lines
519 B
Makefile
24 lines
519 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/01/04 22:57:07 stsp Exp $
|
|
|
|
COMMENT = hexagonal tile-based puzzle game
|
|
DISTNAME = hex-a-hop-1.1.0
|
|
CATEGORIES = games
|
|
HOMEPAGE = http://hexahop.sourceforge.net
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = SDL SDL_mixer SDL_ttf c m pthread stdc++
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=hexahop/}
|
|
|
|
LIB_DEPENDS = devel/sdl-mixer \
|
|
devel/sdl-ttf
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|