-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathmeta.yaml
More file actions
84 lines (75 loc) · 2.64 KB
/
meta.yaml
File metadata and controls
84 lines (75 loc) · 2.64 KB
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
{% set version = "1.1.1g" %}
package:
name: openssl_split
version: {{ version }}
source:
url: http://www.openssl.org/source/openssl-{{ version }}.tar.gz
sha256: ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46
patches:
- 0001-Don-t-use-USE_BCRYPTGENRANDOM-for-VS-older-than-2015.patch
build:
number: 1
requirements:
build:
- {{ compiler('c') }}
- nasm # [win]
- make # [unix]
- perl # [not win]
# 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 # [win]
outputs:
- name: openssl
build:
no_link: lib/libcrypto.so.1.1 # [linux]
no_link: lib/libcrypto.1.1.dylib # [osx]
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') }}
- make
- perl # [not win]
# 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 # [win]
run:
- ca-certificates
script: install_openssl.sh # [unix]
script: install_openssl.bat # [win]
test:
commands:
- copy NUL checksum.txt # [win]
- touch checksum.txt # [unix]
- openssl sha256 checksum.txt
- name: libopenssl-static # [unix]
requirements: # [unix]
build: # [unix]
- {{ compiler('c') }} # [unix]
script: install_libopenssl-static.sh # [unix]
test: # [unix]
commands: # [unix]
- test -f ${PREFIX}/lib/libcrypto.a # [unix]
- test -f ${PREFIX}/lib/libssl.a # [unix]
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