Skip to content

Commit ddff9e5

Browse files
author
Carlos Une
authored
Merge pull request #1 from brocolis/fpm-manifest
Add support for fpm
2 parents b3ea6c2 + 8971880 commit ddff9e5

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/*

fpm.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name = "minpack"
2+
description = "Minpack includes software for solving nonlinear equations and nonlinear least squares problems."
3+
homepage = "http://www.netlib.org/minpack/"
4+
version = "1.0.0"
5+
license = "http://www.netlib.org/minpack/disclaimer"
6+
author = "Jorge Moré, Burt Garbow, and Ken Hillstrom"
7+
maintainer = "@fortran-lang"
8+
copyright = "Minpack Copyright Notice (1999) University of Chicago. All rights reserved"
9+
categories = ["numerical"]
10+
keywords = ["least squares", "linear equations", "nonlinear equations"]
11+
12+
[build]
13+
auto-executables = false
14+
auto-tests = false
15+
auto-examples = false
16+
17+
[install]
18+
library = false
19+
20+
[[ example ]]
21+
name = "example_lmder1"
22+
source-dir = "examples"
23+
main = "example_lmder1.f90"
24+
25+
[[ example ]]
26+
name = "example_lmdif1"
27+
source-dir = "examples"
28+
main = "example_lmdif1.f90"
29+
30+
[[ example ]]
31+
name = "example_primes"
32+
source-dir = "examples"
33+
main = "example_primes.f90"

0 commit comments

Comments
 (0)