The Fortran Standard Library is a community driven de facto standard library for Fortran. The goal of the Fortran Standard Library is to achieve the following general scope: - Utilities (containers, strings, files, OS/environment integration, unit testing & assertions, logging, ...) - Algorithms (searching and sorting, merging, ...) - Mathematics (linear algebra, sparse matrices, special functions, fast Fourier transform, random numbers, statistics, ordinary differential equations, numerical integration, optimization, ...) PR: 286609 Reported by: RwN <rwn@mailo.com>
25 lines
443 B
Makefile
25 lines
443 B
Makefile
PORTNAME= fortran-stdlib
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.7.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= rwn@mailo.com
|
|
COMMENT= Fortran Standard Library
|
|
WWW= https://stdlib.fortran-lang.org/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cmake fortran compiler:features
|
|
|
|
BUILD_DEPENDS= fypp:devel/py-fypp
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fortran-lang
|
|
GH_PROJECT= stdlib
|
|
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
CMAKE_OFF= BUILD_TESTING
|
|
|
|
.include <bsd.port.mk>
|