-
Notifications
You must be signed in to change notification settings - Fork 21
/
WebRTC.podspec
39 lines (26 loc) · 1.35 KB
/
WebRTC.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
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "WebRTC"
s.version = "0.0.6"
s.summary = "WebRTC static libraries and objc headers."
s.description = <<-DESC
A longer description of WebRTC in Markdown format.
Bulding WebRTC for iOS and adding it to an xcode project is no fun.
Just add this cocoa pod to your Podfile and be happy. :)
DESC
s.homepage = "https://www.ahoyconference.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Klaus-Peter Junghanns" => "[email protected]" }
s.social_media_url = "http://twitter.com/kapejod"
s.platform = :ios
s.source = { :git => "https://github.com/kapejod/webrtc-ios.git", :tag => "v0.0.6" }
s.source_files = "include/*.h"
s.public_header_files = "include/*.h"
s.preserve_path = "lib/libWebRTC.a"
s.vendored_libraries = "lib/libWebRTC.a"
s.frameworks = "QuartzCore", "OpenGLES", "AudioToolbox", "AVFoundation", "CoreVideo", "Foundation", "UIKit", "CoreGraphics", "Security", "AssetsLibrary", "MobileCoreServices", "CoreLocation", "CoreMedia", "GLKit", "VideoToolbox"
s.libraries = "sqlite3", "stdc++", "System", "util"
s.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/include/**" }
s.prepare_command = <<-CMD
gzip -d ./lib/*.gz
CMD
end