-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSumOpenSSL.podspec
More file actions
executable file
·35 lines (33 loc) · 1.73 KB
/
Copy pathSumOpenSSL.podspec
File metadata and controls
executable file
·35 lines (33 loc) · 1.73 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
Pod::Spec.new do |s|
s.name = "SumOpenSSL"
s.version = "0.0.1"
s.summary = "OpenSSL for iOS"
s.description = "OpenSSL is an SSL/TLS and Crypto toolkit."
s.license = { :type => 'OpenSSL (OpenSSL/SSLeay)', :file => 'LICENSE' }
s.source = { :git => "https://github.com/vikvych/sum_openssl.git", :tag => s.version.to_s }
s.homepage = "https://safeum.com"
s.authors = { 'Mark J. Cox' => '[email protected]',
'Ralf S. Engelschall' => '[email protected]',
'Dr. Stephen Henson' => '[email protected]',
'Ben Laurie' => '[email protected]',
'Lutz Jänicke' => '[email protected]',
'Nils Larsch' => '[email protected]',
'Richard Levitte' => '[email protected]',
'Bodo Möller' => '[email protected]',
'Ulf Möller' => '[email protected]',
'Andy Polyakov' => '[email protected]',
'Geoff Thorpe' => '[email protected]',
'Holger Reif' => '[email protected]',
'Paul C. Sutton' => '[email protected]',
'Eric A. Young' => '[email protected]',
'Tim Hudson' => '[email protected]',
'Justin Plouffe' => '[email protected]' }
s.ios.deployment_target = '8.0'
s.ios.source_files = 'Include/openssl/**/*.h'
s.ios.public_header_files = 'Include/openssl/**/*.h'
s.ios.header_dir = 'openssl'
s.ios.preserve_paths = 'Library/libcrypto.a', 'Library/libssl.a'
s.ios.vendored_libraries = 'Library/libcrypto.a', 'Library/libssl.a'
s.libraries = 'ssl', 'crypto'
s.requires_arc = false
end