blob: e5d727b117301f34fe6c6eb12aa3ad4d2cdf06a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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>
|