-
Notifications
You must be signed in to change notification settings - Fork 19
/
fpm.toml
34 lines (29 loc) · 893 Bytes
/
fpm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name = "fftpack"
description = "A package of fortran subprograms for the fast fourier transform of periodic and other symmetric sequences"
homepage = "http://www.netlib.org/fftpack/"
version = "4.0.0"
license = "Public Domain"
author = "Paul N. Swarztrauber"
maintainer = "@fortran-lang"
copyright = "Copyright 1985 National Center for Atmospheric Research, Boulder, CO"
categories = ["Fast Fourier Transform"]
keywords = ["netlib", "fftpack", "fft"]
[fortran]
implicit-typing=true
implicit-external=true
source-form="default"
[build]
auto-executables = false
auto-tests = true
auto-examples = true
[dev-dependencies]
test-drive = { git = "https://github.com/fortran-lang/test-drive", tag = "v0.4.0" }
# Original test
[[test]]
name = "tstfft"
source-dir = "test"
main = "tstfft.f"
[[test]]
name = "test_fftpack"
source-dir = "test"
main = "test_fftpack.f90"