diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2008-01-30 04:19:34 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2008-01-30 04:19:34 +0000 |
commit | 849f4a2e3c2546397ce3d49348d2f6bd35c99382 (patch) | |
tree | a42c491e321c8d4b5d6a255023b1bd604014453b /games/tycho/Makefile | |
parent | CRE, which stands for Corewars Redcode Evolver, is an open-source program that (diff) |
Tycho is a program to gather data on Core War warriors. Tycho takes a list of
warriors and fights each against the other. Execution logs of each instruction
executed are recorded for all fights. It prints a report in HTML format.
WWW: http://redcoder.sourceforge.net/?p=tycho
Notes
Notes:
svn path=/head/; revision=206428
Diffstat (limited to 'games/tycho/Makefile')
-rw-r--r-- | games/tycho/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/games/tycho/Makefile b/games/tycho/Makefile new file mode 100644 index 000000000000..c880e6719d34 --- /dev/null +++ b/games/tycho/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: tycho +# Date created: 2008-01-16 +# Whom: alepulver +# +# $FreeBSD$ +# + +PORTNAME= tycho +PORTVERSION= 0.1 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= alepulver +DISTNAME= redcoder + +MAINTAINER= alepulver@FreeBSD.org +COMMENT= Program to gather data (statistics) on Core War warriors + +USE_BZIP2= yes +USE_GMAKE= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +PLIST_FILES= bin/tycho \ + bin/tycho-exstat + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/exstat ${PREFIX}/bin/${PORTNAME}-exstat + +.include <bsd.port.mk> |