- 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.
23 lines
625 B
Makefile
23 lines
625 B
Makefile
# $NetBSD: Makefile,v 1.4 1998/08/20 15:17:00 tsarna Exp $
|
|
#
|
|
|
|
DISTNAME= fly-1.6.1
|
|
CATEGORIES= graphics www
|
|
MASTER_SITES= ftp://www.unimelb.edu.au/pub/www/tools/unix/fly/
|
|
|
|
MAINTAINER= bouyer@netbsd.org
|
|
HOMEPAGE= http://www.unimelb.edu.au/fly/fly.html
|
|
|
|
DEPENDS+= gd-1.3:../../graphics/gd
|
|
|
|
CONFLICTS= fly-1.6.0
|
|
|
|
pre-install:
|
|
${MKDIR} ${PREFIX}/share/doc/fly
|
|
${MKDIR} ${PREFIX}/share/examples/fly
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fly ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/fly
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/fly
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|