-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeta.yaml
31 lines (28 loc) · 1 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
package:
name: _go_select
version: {{ go_variant_version }}
build:
# The build number must always be set to 0.
# Use conda_build_config.yaml to make a new release.
number: 0
string: {{ go_variant_str }}
test:
commands:
- test ${GOROOT} = ${CONDA_PREFIX}/go # [unix]
- cmd /c if x%GOROOT% NEQ x%CONDA_PREFIX%\go exit 1 # [win]
about:
home: https://github.com/conda-forge/_go_select-feedstock
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: "The golang select package."
description: |
We support three different variants of the golang compiler,
`precompiled`, which is a repackage of the builds available from golang.org;
`cgo`, which is compiled from source by conda-forge with CGO_ENABLED=1;
`nocgo`, which is compiled from source by conda-forge with CGO_ENABLED=0.
In version 1 `conda` will prefer the `go-nocgo` version by default, followed
by `go-cgo` and then `go-precompiled`.
extra:
recipe-maintainers:
- conda-forge/go