4760eca917
This has been a pkglint warning for several years now, and pkglint can even fix it automatically. And it did for this commit. Only in lang/mercury, two passes of autofixing were necessary because there were nested variables.
29 lines
974 B
Makefile
29 lines
974 B
Makefile
# $NetBSD: Makefile,v 1.27 2018/01/01 18:16:37 rillig Exp $
|
|
|
|
DISTNAME= pforth_v27_20101121
|
|
PKGNAME= pforth-27
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://pforth.googlecode.com/files/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= asau@inbox.ru
|
|
HOMEPAGE= http://www.softsynth.com/pforth/
|
|
COMMENT= Portable ANS-like Forth
|
|
LICENSE= mit
|
|
|
|
WRKSRC= ${WRKDIR}/pforth_v27
|
|
MAKE_FILE= build/unix/Makefile
|
|
MAKE_FLAGS= SRCDIR=.
|
|
CPPFLAGS= -DPF_DEFAULT_DICTIONARY='"${PREFIX}/lib/pforth/pforth.dic"'
|
|
|
|
INSTALLATION_DIRS= bin lib/pforth share/doc/pforth share/pforth share/pforth/utils
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pforth ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/pforth.dic ${DESTDIR}${PREFIX}/lib/pforth
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${DESTDIR}${PREFIX}/share/doc/pforth/
|
|
${INSTALL_DATA} ${WRKSRC}/fth/*.fth ${DESTDIR}${PREFIX}/share/pforth/
|
|
${INSTALL_DATA} ${WRKSRC}/fth/utils/*.fth \
|
|
${DESTDIR}${PREFIX}/share/pforth/utils/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|