2829e658f2
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with ${PREFIX}/${PKGMANDIR}. Fixes PR 35265, although I did not use the patch provided therein.
21 lines
532 B
Makefile
21 lines
532 B
Makefile
# $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"
|