9637f7852e
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.
27 lines
650 B
Makefile
27 lines
650 B
Makefile
# $NetBSD: Makefile,v 1.3 2020/01/26 17:31:41 rillig Exp $
|
|
|
|
DISTNAME= stan-math-2.18.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=stan-dev/}
|
|
GITHUB_PROJECT= math
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= https://mc-stan.org/
|
|
COMMENT= Stan Math library
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= boost-headers>=1.66.0:../../devel/boost-headers
|
|
DEPENDS+= eigen3>=3.3.3:../../math/eigen3
|
|
DEPENDS+= sundials>=4.1.0:../../math/sundials
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
USE_TOOLS+= pax
|
|
|
|
INSTALLATION_DIRS+= include/stan
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && pax -rw stan ${DESTDIR}${PREFIX}/include
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|