-
Notifications
You must be signed in to change notification settings - Fork 9
/
KSYAirStreamer.podspec
34 lines (32 loc) · 1.18 KB
/
KSYAirStreamer.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
Pod::Spec.new do |s|
s.name = 'KSYAirStreamer'
s.version = '1.5.0'
s.summary = 'airplay receiver => rtmp streamer'
s.description = <<-DESC
* for iOS screen broadcast
* airplay receiver to receive video frome an iOS devices
* transcode video
* publish rtmp stream
DESC
s.homepage = 'https://github.com/ksvc/KSYAirStreamer_iOS'
s.license = {
:type => 'Proprietary',
:text => <<-LICENSE
Copyright 2017 kingsoft Ltd. All rights reserved.
LICENSE
}
s.source = {
:git => 'https://github.com/ksvc/KSYAirStreamer_iOS.git',
:tag => 'v' + s.version.to_s
}
s.requires_arc = true
s.ios.library = 'z', 'iconv', 'stdc++.6', 'bz2'
s.ios.frameworks = [ 'AVFoundation', 'VideoToolbox', 'MediaPlayer']
s.ios.deployment_target = '8.0'
s.source_files = ['prebuilt/include/**/*.h','source/*.{h,m}']
s.vendored_library = 'prebuilt/libs/libksyairserver.a'
#s.vendored_library = 'prebuilt/libs/libksyairserver_auth.a'
s.dependency 'libksygpulive/libksygpulive'
s.dependency 'CocoaAsyncSocket'
end