pkgsrc/misc/firelib/Makefile
rillig 9637f7852e all: migrate homepages from http to https
pkglint -r --network --only "migrate"

As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
2020-01-26 17:30:40 +00:00

32 lines
941 B
Makefile

# $NetBSD: Makefile,v 1.7 2020/01/26 17:31:43 rillig Exp $
#
DISTNAME= firelib-1.0.1
CATEGORIES= misc
MASTER_SITES= http://fire.org/downloads/fireLib/1.0.1/
MAINTAINER= mchittur@cs.nmsu.edu
HOMEPAGE= https://fire.org/
COMMENT= Library for predicting fire spread rate, intensity, and more
WRKSRC= ${WRKDIR}
MAKE_FILE= makefile
BUILD_TARGET= fireSim
INSTALLATION_DIRS= bin include lib
post-build:
cd ${WRKSRC} && ${AR} cru libfire.a fireLib.o
cd ${WRKSRC} && ${RANLIB} libfire.a
do-install:
${INSTALL_LIB} ${WRKSRC}/libfire.a ${DESTDIR}${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/fireLib.h ${DESTDIR}${PREFIX}/include
${INSTALL_PROGRAM} ${WRKSRC}/fireSim ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/firelib
${INSTALL_DATA} ${WRKSRC}/firelib.ps ${DESTDIR}${PREFIX}/share/doc/firelib
${INSTALL_DATA} ${WRKSRC}/license.txt ${DESTDIR}${PREFIX}/share/doc/firelib
.include "../../mk/bsd.pkg.mk"