b506af6b93
Gomoku is an extended TicTacToe game for GNUstep. You win the game if you are able to put 5 of your pieces in a row, column or diagonal. You lose if the computer does it before you. Unlike most other engines, this engine is not designed to play very well, but rather to give you fun when you play against it.
15 lines
317 B
Makefile
15 lines
317 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/11/17 23:28:59 sebastia Exp $
|
|
|
|
COMMENT = extended TicTacToe game for GNUstep
|
|
|
|
DISTNAME = Gomoku-1.2.9
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://www.gnustep.it/nicola/Applications/Gomoku/
|
|
MASTER_SITES = ${HOMEPAGE}
|
|
|
|
MODULES = x11/gnustep
|
|
WANTLIB += c m pthread
|
|
|
|
.include <bsd.port.mk>
|