forked from Lainports/freebsd-ports
squares problems. Five algorithmic paths each include a core subroutine and an easy-to-use driver. The algorithms proceed either from an analytic specification of the Jacobian matrix or directly from the problem functions. The paths include facilities for systems of equations with a banded Jacobian matrix, for least squares problems with a large amount of data, and for checking the consistency of the Jacobian matrix with the functions WWW: http://devernay.free.fr/hacks/cminpack/ PR: 196697 Submitted by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
21 lines
528 B
Makefile
21 lines
528 B
Makefile
# Created by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cminpack
|
|
PORTVERSION= 1.3.4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://devernay.free.fr/hacks/${PORTNAME}/
|
|
|
|
MAINTAINER= fernando.apesteguia@gmail.com
|
|
COMMENT= Solving nonlinear equations and nonlinear least squares problems
|
|
|
|
USES= cmake:outsource
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} "*.[ch] testdata" \
|
|
${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|