forked from krzyzanowskim/ObjectivePGP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ObjectivePGP.podspec
25 lines (19 loc) · 939 Bytes
/
ObjectivePGP.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
Pod::Spec.new do |s|
s.name = "ObjectivePGP"
s.version = "0.10.0-beta2"
s.summary = "OpenPGP for iOS and macOS"
s.description = "Native OpenPGP (RFC 4880) implementation for iOS and macOS."
s.homepage = "http://objectivepgp.com"
s.license = { :type => 'BSD', :file => 'LICENSE.txt' }
s.source = { :git => "https://github.com/krzyzanowskim/ObjectivePGP.git", :tag => "#{s.version}" }
s.authors = {'Marcin Krzyżanowski' => '[email protected]'}
s.social_media_url = "https://twitter.com/krzyzanowskim"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.ios.vendored_frameworks = 'Frameworks/ios/ObjectivePGP.framework'
s.osx.vendored_frameworks = 'Frameworks/macosx/ObjectivePGP.framework'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.weak_frameworks = 'Security'
s.libraries = 'z', 'bz2'
s.requires_arc = true
end