session-ios/SignalServiceKit.podspec

63 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/signalapp/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/signalapp/SignalServiceKit.git", :tag => s.version.to_s }
2015-12-07 03:31:43 +01:00
s.social_media_url = 'https://twitter.com/FredericJacobs'
2019-08-22 02:58:05 +02:00
s.platform = :ios, '10.0'
2018-02-23 18:33:39 +01:00
#s.ios.deployment_target = '9.0'
2015-12-07 03:31:43 +01:00
#s.osx.deployment_target = '10.9'
s.requires_arc = true
s.source_files = 'SignalServiceKit/src/**/*.{h,m,mm,swift}'
2015-12-07 03:31:43 +01:00
# We want to use modules to avoid clobbering CocoaLumberjack macros defined
# by other OWS modules which *also* import CocoaLumberjack. But because we
# also use Objective-C++, modules are disabled unless we explicitly enable
# them
s.compiler_flags = "-fcxx-modules"
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.resources = ["SignalServiceKit/Resources/Certificates/*", "SignalServiceKit/src/Loki/Mnemonic/*.txt"]
s.dependency 'Curve25519Kit'
2015-12-07 03:31:43 +01:00
s.dependency 'CocoaLumberjack'
s.dependency 'CryptoSwift'
2015-12-07 03:31:43 +01:00
s.dependency 'AFNetworking'
s.dependency 'AxolotlKit'
s.dependency 'Mantle'
2017-12-11 22:34:28 +01:00
s.dependency 'YapDatabase/SQLCipher'
2019-01-15 01:04:31 +01:00
s.dependency 'Starscream'
2015-12-07 03:31:43 +01:00
s.dependency 'libPhoneNumber-iOS'
s.dependency 'GRKOpenSSLFramework'
s.dependency 'SAMKeychain'
s.dependency 'Reachability'
2018-06-07 07:57:59 +02:00
s.dependency 'SwiftProtobuf'
2018-09-21 21:41:10 +02:00
s.dependency 'SignalCoreKit'
s.dependency 'SignalMetadataKit'
2018-07-20 21:22:51 +02:00
2018-10-13 21:21:46 +02:00
s.dependency 'PromiseKit', "~> 6.0"
2018-07-20 21:22:51 +02:00
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'SignalServiceKit/tests/**/*.{h,m,swift}'
end
2015-12-07 03:31:43 +01:00
end