blob: a2c55e08d4b32fbee1be6cd301f4e0cbcc32a500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.11 2007/01/07 09:14:13 rillig Exp $
#
DISTNAME= detex-2.7
CATEGORIES= textproc
MASTER_SITES= http://www.cs.purdue.edu/homes/trinkle/detex/
EXTRACT_SUFX= .tar
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.cs.purdue.edu/homes/trinkle/detex/
COMMENT= Remove LaTeX commands
USE_TOOLS+= lex
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/detex ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/detex.1l ${PREFIX}/${PKGMANDIR}/man1/detex.1
.include "../../mk/bsd.pkg.mk"
|