forked from signalapp/SignalProtocolKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AxolotlKit.podspec
27 lines (25 loc) · 1.28 KB
/
AxolotlKit.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
Pod::Spec.new do |s|
s.name = "AxolotlKit"
s.version = "0.9.0"
s.summary = "AxolotlKit is a Free implementation of the Axolotl protocol in Objective-C"
s.homepage = "https://github.com/WhisperSystems/AxolotlKit"
s.license = "GPLv2"
s.license = { :type => "GPLv2", :file => "LICENSE" }
s.author = { "Frederic Jacobs" => "[email protected]" }
s.social_media_url = "http://twitter.com/FredericJacobs"
s.source = { :git => "https://github.com/WhisperSystems/AxolotlKit.git", :tag => "#{s.version}" }
s.source_files = "AxolotlKit/Classes/**/*.{h,m,swift}", "AxolotlKit/Private/*.{h,m,swift}"
s.public_header_files = "AxolotlKit/Classes/**/*.{h}"
s.prefix_header_file = "AxolotlKit/SPKPrefix.h"
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.8"
s.requires_arc = true
s.dependency 'Curve25519Kit', '~> 2.1.0'
s.dependency 'HKDFKit', '~> 0.0.3'
s.dependency 'CocoaLumberjack'
s.dependency 'SwiftProtobuf'
s.dependency 'SignalCoreKit'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'AxolotlKitTests/**/*.{h,m,swift}'
end
end