Uh oh!
There was an error while loading. Please reload this page.
forked from krzyzanowskim/OpenSSL
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOpenSSL.podspec
More file actions
Latest commit
42 lines (38 loc) · 2.28 KB
/
Copy pathOpenSSL.podspec
File metadata and controls
42 lines (38 loc) · 2.28 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
Pod::Spec.newdo |s|
s.name="OpenSSL"
s.version="1.0.1j"
s.summary="OpenSSL Libraries and CocoaPod without Bitcode for iOS and OSX"
s.description="OpenSSL is an SSL/TLS and Crypto toolkit. Deprecated in Mac OS and gone in iOS, this spec gives your project non-deprecated OpenSSL support. Supports OSX and iOS including Simulator (armv7, arm64, i386, x86_64)."
s.homepage="https://github.com/bither/OpenSSL"
s.license={:type=>'OpenSSL (OpenSSL/SSLeay)',:file=>'LICENSE'}
s.source={:git=>"https://github.com/bither/OpenSSL.git",:branch=>"master",:tag=>"#{s.version}"}
s.authors={'Mark J. Cox'=>'mark@openssl.org',
'Ralf S. Engelschall'=>'rse@openssl.org',
'Dr. Stephen Henson'=>'steve@openssl.org',
'Ben Laurie'=>'ben@openssl.org',
'Lutz Jänicke'=>'jaenicke@openssl.org',
'Nils Larsch'=>'nils@openssl.org',
'Richard Levitte'=>'nils@openssl.org',
'Bodo Möller'=>'bodo@openssl.org',
'Ulf Möller'=>'ulf@openssl.org',
'Andy Polyakov'=>'appro@openssl.org',
'Geoff Thorpe'=>'geoff@openssl.org',
'Holger Reif'=>'holger@openssl.org',
'Paul C. Sutton'=>'geoff@openssl.org',
'Eric A. Young'=>'eay@cryptsoft.com',
'Tim Hudson'=>'tjh@cryptsoft.com',
'Justin Plouffe'=>'plouffe.justin@gmail.com'}
s.ios.deployment_target='7.0'
s.ios.source_files='include-ios/openssl/**/*.h'
s.ios.public_header_files='include-ios/openssl/**/*.h'
s.ios.header_dir='openssl'
s.ios.preserve_paths='lib-ios/libcrypto.a','lib-ios/libssl.a'
s.ios.vendored_libraries='lib-ios/libcrypto.a','lib-ios/libssl.a'
s.osx.deployment_target='10.8'
s.osx.source_files='include-osx/openssl/**/*.h'
s.osx.public_header_files='include-osx/openssl/**/*.h'
s.osx.header_dir='openssl'
s.osx.preserve_paths='lib-osx/libcrypto.a','lib-osx/libssl.a'
s.osx.vendored_libraries='lib-osx/libcrypto.a','lib-osx/libssl.a'
s.libraries='ssl','crypto'
end