pkgsrc/games/tscp/Makefile
rillig 7a273b1698 games/*: fix alignment of variable values
pkglint -Wall -r --autofix --only aligned

After running the above command, three packages had to be adjusted
manually:

In maelstrom-x11, pkglint didn't see that a commented variable
assignment should have been re-aligned as well.

In netmaze, there was a single line that didn't align well with all the
others, but pkglint decided to adjust the whole paragraph to this single
line. The result would have been ok, but not good.

In tscp, there was a paragraph where some of the lines were indented
one space more than the others. This rule is useful when one variable
name is very long compared to the others, but not in this case.
2018-01-14 17:33:57 +00:00

31 lines
832 B
Makefile

# $NetBSD: Makefile,v 1.21 2018/01/14 17:34:01 rillig Exp $
#
DISTNAME= tscp181
PKGNAME= tscp-1.81
PKGREVISION= 3
CATEGORIES= games benchmarks
MASTER_SITES= http://www.tckerrigan.com/Chess/TSCP/
EXTRACT_SUFX= .zip
MAINTAINER= abs@NetBSD.org
HOMEPAGE= http://www.tckerrigan.com/
COMMENT= Tom Kerrigan's Simple Chess Program
LICENSE= generic-nonlicense
RESTRICTED= No distribution without authorisation from Tom Kerrigan
NO_BIN_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_SRC_ON_FTP= ${RESTRICTED}
INSTALLATION_DIRS= bin share/doc
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} -o tscp *.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tscp ${DESTDIR}${PREFIX}/bin/tscp
${INSTALL_DATA} ${WRKSRC}/readme.txt ${DESTDIR}${PREFIX}/share/doc/tscp.txt
.include "../../mk/bsd.pkg.mk"