-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenSSL.podspec
More file actions
24 lines (21 loc) · 801 Bytes
/
OpenSSL.podspec
File metadata and controls
24 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'OpenSSL'
s.version = '3.1.4'
s.summary = 'OpenSSL'
s.description = <<-DESC
OpenSSL
DESC
s.homepage = 'https://github.com/kingslay/FFmpegKit'
s.authors = { 'kintan' => '554398854@qq.com' }
s.license = 'MIT'
s.source = { :git => 'https://github.com/kingslay/FFmpegKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
# s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '13.0'
s.default_subspec = 'OpenSSL'
s.static_framework = true
s.subspec 'OpenSSL' do |openssl|
openssl.vendored_frameworks = 'Sources/libssl.xcframework', 'Sources/libcrypto.xcframework'
end
end