5fb2ecb2ee
Major changes since 0.1: * Added metaserver * Redesigned event core, event system is much faster, and more versitle * Added a bunch of new objects, and animated NPC's * Added tiling of maps, to allow larger gameworlds * Added new communication commands, shout and whisper * Integrated FreeSOLID, and redesigned collision engine to be much faster. FreeSOLID is now built automatically, and does not need to be compiled and installed externally. * Much improved build system. * Lots of bugfixes, and other minor improvements.
23 lines
562 B
Makefile
23 lines
562 B
Makefile
# $NetBSD: Makefile,v 1.2 2004/04/09 03:44:30 garbled Exp $
|
|
#
|
|
|
|
DISTNAME= genecys-data-0.2
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=genecys/}
|
|
|
|
MAINTAINER= root@garbled.net
|
|
HOMEPAGE= http://www.genecys.org/
|
|
COMMENT= Game datafiles for Genecys
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
NO_BUILD= YES
|
|
NO_CONFIGURE= YES
|
|
|
|
do-extract:
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/genecys
|
|
cd ${PREFIX}/share/genecys && \
|
|
${GZCAT} ${DISTDIR}/${DISTFILES} | ${GTAR} xmf -
|
|
${CHOWN} -R ${ROOT_USER}:games ${PREFIX}/share/genecys
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|