forked from krzyzanowskim/ObjectivePGP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ObjectivePGP.podspec
29 lines (22 loc) · 1.02 KB
/
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
26
27
28
29
Pod::Spec.new do |s|
s.name = "ObjectivePGP"
s.version = "0.13.0"
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 for non-commercial use', :file => 'LICENSE.txt' }
s.source = { :git => "https://github.com/dsanghan/ObjectivePGP.git" }
s.authors = {'Marcin Krzyzanowski' => '[email protected]'}
s.social_media_url = "https://twitter.com/krzyzanowskim"
s.ios.deployment_target = '8.0'
s.ios.header_dir = 'ObjectivePGP'
s.osx.deployment_target = '10.9'
s.osx.header_dir = 'ObjectivePGP'
s.source_files = 'ObjectivePGP/*.{h,m}', 'ObjectivePGP/CryptoBox/*.{h,m}'
s.public_header_files = 'ObjectivePGP/*.h', 'ObjectivePGP/CryptoBox/*.h'
s.dependency 'OpenSSL-Universal'
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.libraries = 'z', 'bz2'
s.requires_arc = true
end