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