forked from Lainports/freebsd-ports
Castle Vox is a next generation computer strategy board game. Capture all the enemy Castles to win! Features: - Fast world domination. - Plan attacks simultaneously. - Collaborate with teammates. - Maps from history and fantasy. - Giant maps with many players. - Map editor included. - Hard AI will push your brain in single-player matches. - Online multi-player modes: relaxed and speed variants. - Achievements. - Easy to learn, hard to master. - Mixes elements from Diplomacy and Axis & Allies board games. - Available for Mac OS X, Linux, and Windows. WWW: http://sillysoft.net/vox/ PR: 155070 Submitted by: gamato@users.sf.net
32 lines
730 B
Makefile
32 lines
730 B
Makefile
# Created by: Martin Otto
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= CastleVox
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= games java
|
|
MASTER_SITES= http://sillysoft.net/download/
|
|
DISTNAME= CastleVox-linux
|
|
|
|
MAINTAINER= gamato@users.sf.net
|
|
COMMENT= A fast world domination game
|
|
|
|
FETCH_ARGS= -Fpr
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
|
|
WRKSRC= ${WRKDIR}/CastleVoxPC
|
|
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= CastleVox
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} \*.jar ${DATADIR})
|
|
${INSTALL_DATA} ${WRKSRC}/VoxIcon.png ${DATADIR}
|
|
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} Support ${DATADIR})
|
|
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs ${DATADIR})
|
|
${INSTALL_SCRIPT} ${WRKDIR}/CastleVox ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|