forked from jcavar/OpenSSL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGRKOpenSSLFramework.podspec
More file actions
20 lines (17 loc) · 889 Bytes
/
GRKOpenSSLFramework.podspec
File metadata and controls
20 lines (17 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "GRKOpenSSLFramework"
s.module_name = "openssl"
s.version = "1.0.2.#{("a".."z").to_a.index 'o'}.1"
s.summary = "OpenSSL for iOS and OS X"
s.description = "OpenSSL Framework binaries."
s.homepage = "https://github.com/levigroker/OpenSSL/"
s.license = { :type => 'OpenSSL (OpenSSL/SSLeay)', :file => 'LICENSE.txt' }
s.source = { :git => "https://github.com/levigroker/GRKOpenSSLFramework.git", :tag => "#{s.version}" }
s.authors = {'Levi Brown' => 'levigroker@gmail.com'}
s.ios.pod_target_xcconfig = {'ENABLE_BITCODE' => 'YES' }
s.osx.pod_target_xcconfig = {'ENABLE_BITCODE' => 'NO' }
s.ios.deployment_target = '8.0'
s.ios.vendored_frameworks = 'OpenSSL-iOS/bin/openssl.framework'
s.osx.deployment_target = '10.8'
s.osx.vendored_frameworks = 'OpenSSL-macOS/bin/openssl.framework'
end