forked from krzyzanowskim/unnetpgp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUNNetPGP.podspec
25 lines (19 loc) · 1.06 KB
/
UNNetPGP.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 = 'UNNetPGP'
s.version = '0.8.1'
s.ios.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.osx.platform = :osx, '10.8'
s.osx.deployment_target = '10.8'
s.license = { :type => 'Apache License, Version 2.0', :file => 'Licence.txt' }
s.summary = 'Objective-C OpenPGP framework built on foundation of NetPGP library'
s.description = "NetPGP is a standards-compliant library and suite of utilities providing digital signature and verification functionality, as well as data encryption and decryption, using RSA and DSA/Elgamal keys."
s.homepage = 'http://www.netpgp.com'
s.authors = { 'Marcin Krzyżanowski' => '[email protected]', 'Nominet UK' => 'http://www.nic.uk' }
s.source = { :git => 'https://github.com/upnext/unnetpgp.git', :tag => "v#{s.version}" }
s.requires_arc = true
s.dependency 'OpenSSL-Universal'
s.libraries = 'bz2', 'z'
s.source_files = 'netpgp/lib/*.{h,c}', 'netpgp/*.{h,m}', 'netpgp/fmemopen/*.{h,c}'
s.public_header_files = 'netpgp/lib/netpgp.h', 'netpgp/UNNetPGP.h'
end