forked from tumtumtum/StreamingKit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamingKit.podspec
More file actions
Latest commit
16 lines (16 loc) · 849 Bytes
/
Copy pathStreamingKit.podspec
File metadata and controls
16 lines (16 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name="StreamingKit"
s.version="0.1.23"
s.summary="A fast and extensible audio streamer for iOS and OSX with support for gapless playback and custom (non-HTTP) sources."
s.homepage="https://github.com/tumtumtum/StreamingKit/"
s.license='MIT'
s.author={"Thong Nguyen"=>"tumtumtum@gmail.com"}
s.source={:git=>"https://github.com/tumtumtum/StreamingKit.git",:tag=>s.version.to_s}
s.platform=:ios
s.requires_arc=true
s.source_files='StreamingKit/StreamingKit/*.{h,m}'
s.ios.deployment_target='4.3'
s.ios.frameworks='SystemConfiguration','CFNetwork','CoreFoundation','AudioToolbox'
s.osx.deployment_target='10.7'
s.osx.frameworks='SystemConfiguration','CFNetwork','CoreFoundation','AudioToolbox','AudioUnit'
end