-
-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00c7a41
commit 29cc327
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OpenSSL-Universal" | ||
s.version = "3.1.5004" # 3.1.5 | ||
s.summary = "OpenSSL for iOS and OS X" | ||
s.summary = "OpenSSL for iOS, macOS, tvOS, visionOS" | ||
s.description = "OpenSSL is an SSL/TLS and Crypto toolkit. Deprecated in macOS and gone in iOS, this spec gives your project non-deprecated OpenSSL support. Supports macOS, iOS, tvOS, visionOS including Simulator (armv7,armv7s,arm64,x86_64)." | ||
s.homepage = "https://github.com/krzyzanowskim/OpenSSL" | ||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.txt' } | ||
s.source = { :http => "https://github.com/krzyzanowskim/OpenSSL/archive/#{s.version}.zip", :type => "zip", :flatten => true } | ||
s.source = { :http => "https://github.com/krzyzanowskim/OpenSSL/archive/00c7a4195a7006bf9426c74f15c4a88a661d353d.zip", :type => "zip", :flatten => true } | ||
|
||
s.authors = {'Mark J. Cox' => '[email protected]', | ||
'Ralf S. Engelschall' => '[email protected]', | ||
|
@@ -26,9 +26,9 @@ Pod::Spec.new do |s| | |
|
||
s.requires_arc = true | ||
s.cocoapods_version = '>= 1.9' | ||
s.ios.deployment_target = '12.0' | ||
s.osx.deployment_target = '10.15' | ||
s.tvos.deployment_target = '12.0' | ||
s.visionos.deployment_target = '1.0' | ||
s.vendored_frameworks = 'Frameworks/OpenSSL.xcframework' | ||
s.ios.deployment_target = "12.0" | ||
s.osx.deployment_target = "10.15" | ||
s.tvos.deployment_target = "12.0" | ||
s.visionos.deployment_target = "1.0" | ||
s.vendored_frameworks = "Frameworks/OpenSSL.xcframework" | ||
end |