forked from krzyzanowskim/OpenSSL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenSSL-Universal.podspec
35 lines (33 loc) · 1.95 KB
/
OpenSSL-Universal.podspec
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 = "OpenSSL-Universal"
s.version = "3.1.5004" # 3.1.5
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/00c7a4195a7006bf9426c74f15c4a88a661d353d.zip", :type => "zip", :flatten => true }
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.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.watchos.deploytment_target = "8.0"
s.vendored_frameworks = "Frameworks/OpenSSL.xcframework"
end