forked from NoonPacific/NPAudioStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNPAudioStream.podspec
More file actions
executable file
·20 lines (18 loc) · 995 Bytes
/
Copy pathNPAudioStream.podspec
File metadata and controls
executable file
·20 lines (18 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'NPAudioStream'
s.version = '1.2'
s.license = 'MIT'
s.summary = 'NPAudioStream is a lightweight Objective-C library used to continuously stream a playlist of audio.'
s.homepage = 'https://github.com/NoonPacific/NPAudioStream'
s.social_media_url = 'https://twitter.com/NoonPacific'
s.authors = { 'Alex Givens' => 'alex@noonpacific.com' }
s.source = { :git => 'https://github.com/NoonPacific/NPAudioStream.git', :tag => s.version }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.tvos.deployment_target = '9.0'
s.public_header_files = 'NPAudioStream/*.h'
s.source_files = 'NPAudioStream/NPAudioStream.{h,m}', 'NPAudioStream/NPQueuePlayer.{h,m}', 'NPAudioStream/NPPlayerItem.{h,m}', 'NPAudioStream/Categories/NSURL+Extensions.{h,m}', 'NPAudioStream/Categories/NSMutableArray+Extensions.{h,m}'
s.ios.source_files = 'NPAudioStream/Categories/*.{h,m}'
s.frameworks = 'AVFoundation'
end