diff options
author | jlam <jlam@pkgsrc.org> | 2000-10-25 08:40:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-10-25 08:40:00 +0000 |
commit | b89efb04df502053316a7c89f46fd9f5af2b5bf6 (patch) | |
tree | b04f0009cb794a43051522e83b659c368bf170b9 /games/exchess/Makefile | |
parent | 5b56ecc37d42fc577efb8dbd666204fd839548d7 (diff) | |
download | pkgsrc-b89efb04df502053316a7c89f46fd9f5af2b5bf6.tar.gz |
EXchess - experimental chess engine (capable of beating Crafty)
Diffstat (limited to 'games/exchess/Makefile')
-rw-r--r-- | games/exchess/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/games/exchess/Makefile b/games/exchess/Makefile new file mode 100644 index 00000000000..ccbb994a662 --- /dev/null +++ b/games/exchess/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/25 08:40:00 jlam Exp $ + +DISTNAME= EXCH314S +PKGNAME= exchess-3.14 +CATEGORIES= games +MASTER_SITES= http://pc.astro.brandeis.edu/BRAG/people/dch/ +EXTRACT_SUFX= .zip + +MAINTAINER= jlam@netbsd.org +HOMEPAGE= http://pc.astro.brandeis.edu/BRAG/people/dch/chess.html + +NO_WRKSUBDIR= # defined +NO_CONFIGURE= # defined + +LIBDIR= ${PREFIX}/lib/exchess +DOCDIR= ${PREFIX}/share/doc/exchess + +post-extract: + cd ${WRKSRC} && ${MV} search.par search.par.in + ${CP} ${FILESDIR}/Makefile ${WRKSRC} + +post-build: + ${SED} -e "s,@PREFIX@,${PREFIX},g" \ + < ${WRKSRC}/search.par.in > ${WRKSRC}/search.par + +post-install: + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCDIR} + +.include "../../mk/bsd.pkg.mk" |