41 lines
1.4 KiB
Ruby
41 lines
1.4 KiB
Ruby
#
|
|
# Be sure to run `pod lib lint SignalCoreKit.podspec' to ensure this is a
|
|
# 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 = "SignalCoreKit"
|
|
s.version = "1.0.0"
|
|
s.summary = "A Swift & Objective-C library used by other Signal libraries."
|
|
|
|
s.description = <<-DESC
|
|
A Swift & Objective-C library used by other Signal libraries.
|
|
DESC
|
|
|
|
s.homepage = "https://github.com/signalapp/SignalCoreKit"
|
|
s.license = 'GPLv3'
|
|
s.author = { "iOS Team" => "ios@signal.org" }
|
|
s.source = { :git => "https://github.com/signalapp/SignalCoreKit.git", :tag => s.version.to_s }
|
|
s.social_media_url = 'https://twitter.com/signalapp'
|
|
|
|
s.platform = :ios, '10.0'
|
|
s.requires_arc = true
|
|
|
|
s.source_files = 'SignalCoreKit/src/**/*.{h,m,mm,swift}', 'SignalCoreKit/Private/**/*.{h,m,mm,swift}'
|
|
|
|
s.public_header_files = 'SignalCoreKit/src/**/*.h'
|
|
|
|
s.prefix_header_file = 'SignalCoreKit/SCKPrefix.h'
|
|
s.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC' }
|
|
|
|
s.dependency 'CocoaLumberjack'
|
|
s.dependency 'GRKOpenSSLFramework'
|
|
|
|
s.test_spec 'Tests' do |test_spec|
|
|
test_spec.source_files = 'SignalCoreKitTests/src/**/*.{h,m,swift}'
|
|
end
|
|
end
|