forked from VoIPGRID/VialerSIPLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VialerSIPLib.podspec
33 lines (27 loc) · 1.15 KB
/
VialerSIPLib.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
28
29
30
31
32
33
#
# Be sure to run `pod lib lint VialerSIPLib.podspec --use-libraries' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "VialerSIPLib"
s.version = "3.3.4"
s.summary = "Vialer SIP Library for iOS"
s.description = "Objective-C wrapper around PJSIP."
s.homepage = "https://github.com/VoIPGRID/VialerSIPLib"
s.license = 'GNU GPL v3'
s.author = {"Devhouse Spindle" => "[email protected]"}
s.source = {:git => "https://github.com/VoIPGRID/VialerSIPLib.git", :tag => s.version.to_s}
s.social_media_url = "https://twitter.com/wearespindle"
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = "Pod/Classes/**/*.{h,m}"
s.public_header_files = "Pod/Classes/**/*.h"
s.resource_bundles = { 'VialerSIPLib' => 'Pod/Resources/*.wav' }
s.dependency 'Vialer-pjsip-iOS'
s.dependency 'CocoaLumberjack'
s.dependency 'Reachability'
end