-
Notifications
You must be signed in to change notification settings - Fork 0
/
HLSAudioPlayer.podspec
47 lines (35 loc) · 1.48 KB
/
HLSAudioPlayer.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
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = 'HLSAudioPlayer'
s.version = '0.1.1'
s.summary = 'A mini framework for parsing and playing audio streams from HLS playlists.'
s.description = <<-DESC
HLSAudioPlayer is a mini framework for parsing and playing audio streams from HLS playlists.
DESC
s.homepage = 'https://github.com/nobre84/HLSAudioPlayer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rafael Nobre' => '[email protected]' }
s.source = { :git => 'https://github.com/nobre84/HLSAudioPlayer.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nobre84'
s.ios.deployment_target = '8.0'
s.swift_version = '4.2'
s.subspec 'Shared' do |ss|
ss.source_files = 'HLSAudioPlayer/Shared/Sources/**/*.*'
end
s.subspec 'Parser' do |ss|
ss.source_files = 'HLSAudioPlayer/Parser/Sources/**/*.*'
ss.dependency 'HLSAudioPlayer/Shared'
end
s.subspec 'Downloader' do |ss|
ss.source_files = 'HLSAudioPlayer/Downloader/Sources/**/*.*'
ss.dependency 'HLSAudioPlayer/Parser'
ss.dependency 'RNConcurrentBlockOperation'
end
s.subspec 'Player' do |ss|
ss.source_files = 'HLSAudioPlayer/Player/Sources/**/*.*'
ss.resources = 'HLSAudioPlayer/Player/Resources/**/*.*'
ss.dependency 'HLSAudioPlayer/Downloader'
end
s.subspec 'GestureHelper' do |ss|
ss.source_files = 'HLSAudioPlayer/GestureHelper/Sources/**/*.*'
end
end