2345897372
vitetris is a terminal-based Tetris clone by Victor Nilsson. Gameplay is much like the early Tetris games by Nintendo. Features include: -Configurable keys -Highscore table -Two-player mode with garbage -Network play from MAINTAINER Ryan Freeman with several tweaks input from sthen@ who kicked my ass at network game ok sthen@
37 lines
786 B
Makefile
37 lines
786 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/22 12:43:31 ajacoutot Exp $
|
|
|
|
COMMENT = terminal-based tetris clone in vein of nintendo tetris
|
|
DISTNAME = vitetris-0.51
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://victornils.net/tetris/
|
|
|
|
MAINTAINER = Ryan Freeman <ryan@slipgate.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c ncurses
|
|
|
|
MASTER_SITES = http://victornils.net/tetris/
|
|
|
|
CONFIGURE_STYLE = simple
|
|
CONFIGURE_ARGS = --prefix=${PREFIX} \
|
|
curses="-lncurses" \
|
|
xlib=no
|
|
|
|
ALL_TARGET = # empty
|
|
NO_REGRESS = Yes
|
|
|
|
CFLAGS+= -fsigned-char
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/vitetris
|
|
${INSTALL_DATA} /dev/null \
|
|
${PREFIX}/share/examples/vitetris/vitetris-hiscores
|
|
|
|
.include <bsd.port.mk>
|