This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeta.yaml
61 lines (50 loc) · 2.12 KB
/
meta.yaml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{% set libgfortran_version = [3, 0, 0] %}
{% set libquadmath_version = [0, 0, 0] %}
{% set libgcc_s_version = [1, 0, 0] %}
package:
name: libgfortran
version: {{ libgfortran_version|join('.') }}
build:
number: 0
skip: true # [not osx]
always_include_files:
- lib/libgfortran.dylib # [osx]
- lib/libgfortran.{{ libgfortran_version[0] }}.dylib # [osx]
# Including libquadmath for the time
# being. This will need to be broken
# out in the long term.
- lib/libquadmath.dylib # [osx]
- lib/libquadmath.{{ libquadmath_version[0] }}.dylib # [osx]
# Including libgcc_s for the time
# being. This will need to be broken
# out in the long term.
- lib/libgcc_s.{{ libgcc_s_version[0] }}.dylib # [osx]
- lib/libgcc_s_ppc64.{{ libgcc_s_version[0] }}.dylib # [osx]
- lib/libgcc_s_x86_64.{{ libgcc_s_version[0] }}.dylib # [osx]
requirements:
build:
- gcc 4.8.5
test:
commands:
- test -f "${PREFIX}/lib/libgfortran.dylib" # [osx]
- test -f "${PREFIX}/lib/libgfortran.{{ libgfortran_version[0] }}.dylib" # [osx]
# Including libquadmath for the time
# being. This will need to be broken
# out in the long term.
- test -f "${PREFIX}/lib/libquadmath.dylib" # [osx]
- test -f "${PREFIX}/lib/libquadmath.{{ libquadmath_version[0] }}.dylib" # [osx]
# Including libgcc_s for the time
# being. This will need to be broken
# out in the long term.
- test -f "${PREFIX}/lib/libgcc_s.{{ libgcc_s_version[0] }}.dylib" # [osx]
- test -f "${PREFIX}/lib/libgcc_s_ppc64.{{ libgcc_s_version[0] }}.dylib" # [osx]
- test -f "${PREFIX}/lib/libgcc_s_x86_64.{{ libgcc_s_version[0] }}.dylib" # [osx]
about:
home: http://gcc.gnu.org/
summary: Fortran libraries from the GNU Compiler Collection
license: GPL 3 (with GCC Runtime Library Exception 3.1)
extra:
recipe-maintainers:
- jakirkham
- msarahan
- pelson