session-ios/SignalServiceKit.podspec

55 lines
2.2 KiB
Plaintext
Raw Normal View History

2015-12-07 03:31:43 +01:00
#
2016-04-24 05:08:51 +02:00
# Be sure to run `pod lib lint SignalServiceKit.podspec' to ensure this is a
2015-12-07 03:31:43 +01:00
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SignalServiceKit"
s.version = "0.9.0"
s.summary = "An Objective-C library for communicating with the Signal messaging service."
2015-12-07 03:31:43 +01:00
s.description = <<-DESC
2016-04-24 05:08:51 +02:00
An Objective-C library for communicating with the Signal messaging service.
DESC
2015-12-07 03:31:43 +01:00
s.homepage = "https://github.com/WhisperSystems/SignalServiceKit"
2015-12-07 03:31:43 +01:00
s.license = 'GPLv3'
s.author = { "Frederic Jacobs" => "github@fredericjacobs.com" }
s.source = { :git => "https://github.com/WhisperSystems/SignalServiceKit.git", :tag => s.version.to_s }
2015-12-07 03:31:43 +01:00
s.social_media_url = 'https://twitter.com/FredericJacobs'
s.platform = :ios, '8.0'
#s.ios.deployment_target = '8.0'
#s.osx.deployment_target = '10.9'
s.requires_arc = true
2017-07-19 18:02:53 +02:00
s.source_files = 'SignalServiceKit/src/**/*.{h,m,mm}'
2015-12-07 03:31:43 +01:00
2017-07-19 18:02:53 +02:00
s.resources = ['SignalServiceKit/src/Security/PinningCertificate/textsecure.cer',
'SignalServiceKit/src/Security/PinningCertificate/GIAG2.crt',
'SignalServiceKit/src/Security/PinningCertificate/GSR2.crt',
'SignalServiceKit/src/Security/PinningCertificate/GSR4.crt',
'SignalServiceKit/src/Security/PinningCertificate/GTSR1.crt',
'SignalServiceKit/src/Security/PinningCertificate/GTSR2.crt',
'SignalServiceKit/src/Security/PinningCertificate/GTSR3.crt',
'SignalServiceKit/src/Security/PinningCertificate/GTSR4.crt']
2017-07-19 18:02:53 +02:00
s.prefix_header_file = 'SignalServiceKit/src/TSPrefix.h'
2015-12-07 03:31:43 +01:00
s.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC' }
s.dependency '25519'
s.dependency 'CocoaLumberjack'
s.dependency 'AFNetworking'
s.dependency 'AxolotlKit'
s.dependency 'Mantle'
s.dependency 'YapDatabase/SQLCipher', '~> 2.9.3'
s.dependency 'SocketRocket'
2015-12-07 03:31:43 +01:00
s.dependency 'libPhoneNumber-iOS'
2017-08-21 17:21:23 +02:00
s.dependency 'OpenSSL'
s.dependency 'SAMKeychain'
2015-12-07 03:31:43 +01:00
s.dependency 'TwistedOakCollapsingFutures'
s.dependency 'Reachability'
2015-12-07 03:31:43 +01:00
end