bcallah 252a8bccf3 Import games/2048-cli, a terminal version of the 2048 sliding block puzzle
game.

Submitted by Kaashif Hymabaccus <kaashif AT kaashif DOT co DOT uk>, who
takes MAINTAINER, thanks!

ok jca@ on a previous version back in August. Slightly tweaked by me to
update for newer GH_* variable changes.

"Go for it." bentley@

2048-cli is a terminal-based version of the popular 2048 sliding block
puzzle game. Supports animations, colors, stores your high score, and
includes an AI.
2017-12-10 22:44:51 +00:00

27 lines
524 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2017/12/10 22:44:51 bcallah Exp $
COMMENT = terminal version of the 2048 sliding block puzzle game
CATEGORIES = games
GH_ACCOUNT = tiehuis
GH_PROJECT = 2048-cli
GH_TAGNAME = v0.9.1
MAINTAINER = Kaashif Hymabaccus <kaashif@kaashif.co.uk>
# MIT
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c curses
USE_GMAKE = Yes
ALL_TARGET = curses
NO_TEST = Yes
do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/2048 ${PREFIX}/bin
${INSTALL_MAN} ${WRKBUILD}/man/2048.1 ${PREFIX}/man/man1
.include <bsd.port.mk>