-
Notifications
You must be signed in to change notification settings - Fork 0
/
DBChainSm2.podspec
31 lines (23 loc) · 1.19 KB
/
DBChainSm2.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
Pod::Spec.new do |spec|
spec.name = "DBChainSm2"
spec.version = "2.5.1"
spec.summary = "国密 SM2 的 OC 封装,基于 OpenSSL。"
spec.description = '基于 OpenSSL 封装 SM2 加解密、SM2 签名验签、等。'
spec.homepage = "https://github.com/Ann-iOS/DBChainSm2"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
# spec.license = "MIT (example)"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "YangtingTombay" => "m18620345206@163.com" }
spec.platform = :ios
# spec.platform = :ios, "9.0"
spec.ios.deployment_target = '9.0'
#spec.source = { :git => "https://github.com/Ann-iOS/DBChainSm2.git", :tag => "#{spec.version}" }
spec.source = { :git => "https://github.com/Ann-iOS/DBChainSm2.git", :tag => spec.version.to_s }
spec.pod_target_xcconfig = { 'ARCHS[sdk=iphonesimulator*]' => '$(ARCHS_STANDARD_64_BIT)' }
spec.source_files = "DBChainSm2/**/*.{h,m}"
spec.public_header_files = "DBChainSm2/**/*.h"
spec.requires_arc = true
spec.static_framework = true
spec.frameworks = "Security"
spec.dependency "GMOpenSSL"
end