forked from pili-engineering/PLCameraStreamingKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PLCameraStreamingKit.podspec
35 lines (29 loc) · 1.3 KB
/
PLCameraStreamingKit.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
#
# Be sure to run `pod lib lint PLCameraStreamingKit.podspec' 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 = "PLCameraStreamingKit"
s.version = "1.8.1"
s.summary = "Pili iOS camera streaming framework via RTMP."
s.homepage = "https://github.com/pili-engineering/PLCameraStreamingKit"
s.license = 'Apache License, Version 2.0'
s.author = { "hzwangsiyu" => "hzwangsiyu@gmail.com" }
s.source = { :git => "https://github.com/pili-engineering/PLCameraStreamingKit.git", :tag => "v#{s.version}" }
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.public_header_files = 'Pod/Library/include/PLCameraStreamingKit/*.h'
s.source_files = 'Pod/Library/include/PLCameraStreamingKit/*.h'
s.dependency 'PLStreamingKit', '1.2.5'
s.frameworks = ['UIKit', 'AVFoundation', 'CoreGraphics', 'CFNetwork', 'AudioToolbox', 'CoreMedia', 'VideoToolbox']
s.libraries = 'z', 'c++'
s.default_subspec = "precompiled"
s.subspec "precompiled" do |ss|
ss.vendored_libraries = 'Pod/Library/lib/*.a'
end
end