d4d1aea8ff
built to handle a very specific kind of game: single-player 2D action RPGs. Flare is not a reimplementation of an existing game or engine. It is a tribute to and exploration of the action RPG genre. Rather than building a very abstract, robust game engine, the goal of this project is to build several real games and harvest an engine from the common, reusable code. The first game, in progress, is a fantasy dungeon crawl. WWW: http://clintbellanger.net/rpg/ WWW: https://github.com/clintbellanger/flare
39 lines
770 B
Makefile
39 lines
770 B
Makefile
# New ports collection makefile for: flare
|
|
# Date created: 03 May 2011
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flare
|
|
DISTVERSION= 015_1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://cloud.github.com/downloads/clintbellanger/flare/ \
|
|
http://mirror.amdmi3.ru/files/
|
|
DISTNAME= ${PORTNAME}_linux_v${DISTVERSION}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Free Libre Action Roleplaying Engine
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_CMAKE= yes
|
|
USE_SDL= sdl mixer image ttf
|
|
MAKE_JOBS_SAFE= yes
|
|
CMAKE_BUILD_TYPE= #empty
|
|
INSTALLS_ICONS= yes
|
|
|
|
CMAKE_ARGS= -DBINDIR="bin" -DDATADIR="share/flare"
|
|
|
|
LATEST_LINK= flare-rpg
|
|
|
|
PORTDOCS= *
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|