-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmeta.yaml
172 lines (162 loc) · 6.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{% set sdk_version = "8.0.302" %}
{% set runtime_version = "8.0.6" %}
{% set sha256 = "8cc5b1216e0ef019199bbe5907cbe24d6110a6fd4c836c6892349a4532184337" %} # [aarch64]
{% set sha256 = "8c84340e7bbbe478463debb9230e18d5b1a94583c2ebc04eb28a39a232b37f55" %} # [linux]
{% set sha256 = "0a786792c6ff41a7cf3c5d43bc2bbffe4a96a9c9df709cb816111ff670d33eb9" %} # [arm64]
{% set sha256 = "183d575fe4604cac142145204f202857ceaf6dcda5a21e7d04df2b719d44d761" %} # [osx]
{% set sha256 = "ddb7dc983df37b20bd03b57c27c1ecdc3eee8f7187cca9d6498023381f912dc0" %} # [win]
{% set platform = "linux-arm64" %} # [aarch64]
{% set platform = "linux-x64" %} # [linux]
{% set platform = "osx-arm64" %} # [arm64]
{% set platform = "osx-x64" %} # [osx]
{% set platform = "win-x64" %} # [win]
{% set ext = "tar.gz" %} # [not win]
{% set ext = "zip" %} # [win]
package:
name: dotnet
version: {{ sdk_version }}
source:
url: https://dotnetcli.azureedge.net/dotnet/Sdk/{{ sdk_version }}/dotnet-sdk-{{ sdk_version }}-{{ platform }}.{{ ext }}
sha256: {{ sha256 }}
folder: dotnet
build:
number: 0
binary_relocation: False # [osx]
skip: True # [aarch64]
outputs:
- name: dotnet
version: {{ sdk_version }}
requirements:
run:
- {{ pin_subpackage('dotnet-runtime', exact=True) }}
- {{ pin_subpackage('dotnet-aspnetcore', exact=True) }}
- {{ pin_subpackage('dotnet-desktop', exact=True) }} # [win]
- {{ pin_subpackage('dotnet-sdk', exact=True) }}
test:
commands:
- dotnet --version
- name: dotnet-runtime
version: {{ runtime_version }}
script: build-runtime.bat # [win]
script: build-runtime.sh # [not win]
requirements:
build:
- {{ compiler('cxx') }}
- posix # [win]
- sysroot_linux-64 2.17 # [linux64]
host:
- zlib # [unix]
- libcurl # [unix]
- lttng-ust # [linux64]
run:
- lttng-ust # [linux64]
- libcurl # [unix]
- icu # [unix]
- krb5 # [unix]
- __glibc >=2.17 # [linux64]
test:
commands:
- dotnet --list-runtimes
#- test "${DOTNET_ROOT}" = "${CONDA_PREFIX}/lib/dotnet" # [unix]
#- test "${DOTNET_TOOLS}" = "${CONDA_PREFIX}/lib/dotnet/tools" # [unix]
#- if not defined DOTNET_ROOT exit 1 # [win]
#- if not defined DOTNET_TOOLS exit 1 # [win]
about:
home: https://github.com/dotnet/runtime
license: MIT
license_file: dotnet/LICENSE.txt
summary: |
.NET Core is a free and open-source managed computer software
framework for the Windows, Linux, and macOS operating systems.
- name: dotnet-sdk
version: {{ sdk_version }}
script: build-sdk.bat # [win]
script: build-sdk.sh # [not win]
requirements:
build:
- {{ compiler('cxx') }}
- posix # [win]
- sysroot_linux-64 2.17 # [linux64]
host:
- zlib # [unix]
- libcurl # [unix]
- lttng-ust # [linux64]
run:
- lttng-ust # [linux64]
- libcurl # [unix]
- icu # [unix]
- krb5 # [unix]
- __glibc >=2.17 # [linux64]
- dotnet-runtime ={{ runtime_version }}
test:
commands:
- dotnet --version # [not aarch64]
- test -f $PREFIX/lib/dotnet/dotnet # [aarch64]
about:
home: https://github.com/dotnet/sdk
license: MIT
license_file: dotnet/LICENSE.txt
summary: |
.NET Core is a free and open-source managed computer software
framework for the Windows, Linux, and macOS operating systems.
- name: dotnet-aspnetcore
version: {{ runtime_version }}
script: build-aspnetcore.bat # [win]
script: build-aspnetcore.sh # [not win]
requirements:
build:
- {{ compiler('cxx') }}
- posix # [win]
- sysroot_linux-64 2.17 # [linux64]
host:
- zlib # [unix]
- libcurl # [unix]
- lttng-ust # [linux64]
run:
- lttng-ust # [linux64]
- libcurl # [unix]
- icu # [unix]
- krb5 # [unix]
- __glibc >=2.17 # [linux64]
- dotnet-runtime ={{ runtime_version }}
test:
commands:
- test -d $PREFIX/lib/dotnet/shared/Microsoft.AspNetCore.App # [not win]
- if not exist %PREFIX%\\dotnet\\shared\\Microsoft.AspNetCore.App exit 1 # [win]
about:
home: https://github.com/dotnet/aspnetcore
license: MIT
license_file: dotnet/LICENSE.txt
summary: |
.NET Core is a free and open-source managed computer software
framework for the Windows, Linux, and macOS operating systems.
- name: dotnet-desktop # [win]
version: {{ runtime_version }} # [win]
script: build-desktop.bat # [win]
requirements: # [win]
build: # [win]
- posix # [win]
run: # [win]
- dotnet-runtime ={{ runtime_version }} # [win]
test: # [win]
commands: # [win]
- if not exist %PREFIX%\\dotnet\\shared\\Microsoft.WindowsDesktop.App exit 1 # [win]
about: # [win]
home: https://github.com/dotnet/desktop # [win]
license: MIT # [win]
license_file: dotnet/LICENSE.txt # [win]
summary: | # [win]
.NET Core is a free and open-source managed computer software
framework for the Windows, Linux, and macOS operating systems.
about:
home: https://github.com/dotnet/core
license: MIT
license_file: dotnet/LICENSE.txt
summary: |
.NET Core is a free and open-source managed computer software
framework for the Windows, Linux, and macOS operating systems.
extra:
recipe-maintainers:
- dhirschfeld
- ZimmerA
- acesnik