d667bb0a38
generate hands for duplicate bridge Hands is a program to generate bridge hands for a duplicate game. The program writes output to the terminal ("Standard out") which may be redirected to a file or a printer. The output is suitable for printing on 8 1/2 x 11 inch pages using any fixed-pitch font at 12 characters per inch, such as 10-point Courier, or for redirection to any Postcript printer or compatible interpreter.
24 lines
589 B
Makefile
24 lines
589 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2001/10/28 08:05:58 jlam Exp $
|
|
|
|
DISTNAME= hands-2.0.bsd386
|
|
PKGNAME= bridge-hands-2.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.whiteoaks.com/hands/
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://www.whiteoaks.com/hands/
|
|
COMMENT= generate hands for duplicate bridge
|
|
|
|
EXTRACT_ELEMENTS= hands/source
|
|
WRKSRC= ${WRKDIR}/hands/source
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o hands hands.c ${LIBS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hands ${PREFIX}/bin/bridge-hands
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|