summaryrefslogtreecommitdiff
path: root/textproc/gutcheck/Makefile
diff options
context:
space:
mode:
authorwiz <wiz>2010-05-08 20:46:36 +0000
committerwiz <wiz>2010-05-08 20:46:36 +0000
commitc2f39092d0f48f573969b60f51d5646647ce78c0 (patch)
tree286a26d877e6911183325e9190c416a97a2cd8cc /textproc/gutcheck/Makefile
parentaa37cd303cb57d2c7344653d36caa1e7c8b9a552 (diff)
downloadpkgsrc-c2f39092d0f48f573969b60f51d5646647ce78c0.tar.gz
Initial import of gutcheck-0.991:
Gutcheck is a plain-text checking program that specializes in reporting the problems that spellcheckers don't--errors like mismatched quotes, misplaced punctuation, unintended blank lines. It is specifically tuned for checking texts for submission to Project Gutenberg, though it can be useful elsewhere as well.
Diffstat (limited to 'textproc/gutcheck/Makefile')
-rw-r--r--textproc/gutcheck/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/textproc/gutcheck/Makefile b/textproc/gutcheck/Makefile
new file mode 100644
index 00000000000..1e006b350ed
--- /dev/null
+++ b/textproc/gutcheck/Makefile
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1.1.1 2010/05/08 20:46:36 wiz Exp $
+#
+
+DISTNAME= gutcheck
+PKGNAME= gutcheck-0.991
+CATEGORIES= textproc
+MASTER_SITES= http://pglaf.org/~jtinsley/gutcheck/
+EXTRACT_SUFX= .zip
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://gutcheck.sourceforge.net/
+COMMENT= Text checker specialized in reporting problems spellcheckers overlook
+LICENSE= gnu-gpl-v2
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+DIST_SUBDIR= ${PKGNAME_NOREV}
+WRKSRC= ${WRKDIR}
+INSTALLATION_DIRS= bin share/doc/gutcheck
+
+do-build:
+ cd ${WRKSRC} && ${CC} ${CFLAGS} -o gutcheck gutcheck.c
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/gutcheck ${DESTDIR}${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/gutcheck.txt \
+ ${DESTDIR}${PREFIX}/share/doc/gutcheck
+
+.include "../../mk/bsd.pkg.mk"