6bd0d65c65
- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
22 lines
537 B
Makefile
22 lines
537 B
Makefile
# $NetBSD: Makefile,v 1.5 1998/08/20 15:17:29 tsarna Exp $
|
|
# FreeBSD Id: Makefile,v 1.2 1997/08/13 06:33:51 asami Exp
|
|
#
|
|
|
|
DISTNAME= Par150
|
|
PKGNAME= par-1.50
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.cs.berkeley.edu/~amc/Par/
|
|
|
|
MAINTAINER= mark@grondar.za
|
|
HOMEPAGE= http://www.cs.berkeley.edu/~amc/Par/
|
|
|
|
ALL_TARGET=
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC}; ${CP} protoMakefile Makefile)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/par ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/par.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|