Tuxanci are czechoslovak multiplatform action game. In the begining it was inspired by czech game Bulanci (which is however only for MS Windows), but now it goes its own way. The game is programmed in language C and the rendering core is based on SDL library. Man can play two-players game on one computer or in network multiplayer.
29 lines
819 B
Makefile
29 lines
819 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/11/10 13:38:07 ondratu Exp $
|
|
#
|
|
|
|
DISTNAME= tuxanci-0.20.0-src
|
|
PKGNAME= tuxanci-server-0.20.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://download.tuxanci.org/0.20.0/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc@blackmouse.biz
|
|
HOMEPAGE= http://download.tuxanci.org/0.20.0/
|
|
COMMENT= server of czechoslovak multiplatform action game like Bulanci
|
|
|
|
WRKSRC= ${WRKDIR}/pkgs/tuxanci-0.20.0-src
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES+= c c++
|
|
|
|
EGDIR= ${PREFIX}/share/examples
|
|
MAKE_ENV+= EGDIR=${EGDIR}
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/tuxanci-server
|
|
CONF_FILES+= ${EGDIR}/tuxanci-server/server.conf ${PKG_SYSCONFDIR}/tuxanci-server/server.conf
|
|
|
|
CMAKE_ARGS+= -DServer=1 \
|
|
-DPREFIX=\\\"${PREFIX}/\\\" \
|
|
-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX} \
|
|
-DEGDIR=${EGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|