-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.52 KB
/
package.json
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
{
"name": "esy-openssl",
"version": "1.1.1g",
"description": "Mirror of OpenSSL",
"license": "Apache 2.0",
"source": "https://github.com/openssl/openssl/archive/OpenSSL_1_1_1g.tar.gz#33324ff957edaae8ae575817b456320378da46ff",
"override": {
"build": [
[
"bash",
"-c",
"#{os == 'windows' ? './configure mingw64 --prefix=$cur__install --openssldir=$cur__install/ssl --cross-compile-prefix=x86_64-w64-mingw32-' : './config --prefix=$cur__install --openssldir=$cur__install/ssl'}"
],
[
"make",
"-j4"
]
],
"install": [
[
"make",
"install"
],
[
"bash",
"-c",
"mkdir -p #{self.install / 'ssl'}"
],
[
"bash",
"-c",
"mv cert.pem #{self.install / 'ssl'}"
]
],
"buildsInSource": true,
"exportedEnv": {
"LD_LIBRARY_PATH": {
"val": "#{self.lib : $LD_LIBRARY_PATH}",
"scope": "global"
},
"OPENSSL_LIB_PATH": {
"val": "#{self.lib}",
"scope": "global"
},
"OPENSSL_INCLUDE_PATH": {
"val": "#{self.install / 'include'}",
"scope": "global"
},
"OPENSSL_BIN_PATH": {
"val": "#{self.bin}",
"scope": "global"
},
"PKG_CONFIG_PATH": {
"val": "#{self.lib / 'pkgconfig'}",
"scope": "global"
}
},
"dependencies": {
"@opam/conf-autoconf": "esy-packages/esy-autoconf:package.json#fb93edf",
"@opam/conf-pkg-config": "*"
}
}
}