forked from krzyzanowskim/ObjectivePGP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectivePGP.podspec
More file actions
26 lines (20 loc) · 943 Bytes
/
ObjectivePGP.podspec
File metadata and controls
26 lines (20 loc) · 943 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
25
26
Pod::Spec.new do |s|
s.name = "ObjectivePGP"
s.version = "0.5.1"
s.summary = "OpenPGP for iOS and OSX"
s.description = "Native OpenPGP (RFC 4880) implementation for iOS and OSX."
s.homepage = "https://krzyzanowskim@bitbucket.org/krzyzanowskim/objectivepgp.git"
s.license = { :type => 'BSD', :file => 'LICENSE.txt' }
s.source = { :git => "https://github.com/krzyzanowskim/ObjectivePGP.git", :tag => "#{s.version}" }
s.authors = {'Marcin Krzyżanowski' => 'marcin@krzyzanowskim.com'}
s.social_media_url = "https://twitter.com/krzyzanowskim"
s.ios.deployment_target = '6.0'
s.ios.header_dir = 'ObjectivePGP'
s.osx.deployment_target = '10.9'
s.osx.header_dir = 'ObjectivePGP'
s.source_files = 'ObjectivePGP/*.{h,m}'
s.public_header_files = 'ObjectivePGP/*.h'
s.dependency 'OpenSSL-Universal'
s.requires_arc = true
s.libraries = 'z', 'bz2'
end