-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
meta.yaml
62 lines (55 loc) · 1.78 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
{% set name = "openssl" %}
{% set version = "1.1.1b" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: http://www.openssl.org/source/{{ name }}-{{ version }}.tar.gz
sha256: 5c557b023230413dfb0756f3137a13e6d726838ccd1430888ad15bfb2b43ea4b
build:
number: 1
no_link: lib/libcrypto.so.1.1 # [linux]
no_link: lib/libcrypto.1.1.dylib # [osx]
has_prefix_files: # [unix]
- bin/c_rehash # [unix]
- lib/pkgconfig/libcrypto.pc # [unix]
- lib/pkgconfig/libssl.pc # [unix]
- lib/pkgconfig/openssl.pc # [unix]
run_exports:
# openssl's versioning is X.Y.Z(rev), where rev is really the patch release ID
# This pin allows the patch release to be >= the build-time openssl version.
- {{ pin_subpackage('openssl', max_pin='x.x.x') }}
requirements:
build:
- {{ compiler('c') }}
- nasm # [win]
- make # [unix]
# Empty host section to ensure that this is identified as cb3
host:
# technically a build tool, but the windows makefile really wants to find it in the host env.
# easier to do this than carry a patch.
- perl
run:
- ca-certificates
test:
commands:
- copy NUL checksum.txt # [win]
- touch checksum.txt # [unix]
- openssl sha256 checksum.txt
about:
home: http://www.openssl.org/
license_file: LICENSE
license: OpenSSL
license_family: Apache
summary: OpenSSL is an open-source implementation of the SSL and TLS protocols
dev_url: https://github.com/openssl/openssl
doc_url: https://www.openssl.org/docs/man1.1.1/
extra:
recipe-maintainers:
- jakirkham
- jjhelmus
- msarahan
- ocefpaf
- pelson
- carlodri