forked from douban/DOUAudioStreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DOUAudioStreamer.podspec
30 lines (27 loc) · 1.13 KB
/
DOUAudioStreamer.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
Pod::Spec.new do |s|
# DOUAudioStreamer - A Core Audio based streaming audio player for iOS/Mac:
#
# http://github.com/douban/DOUAudioStreamer
#
# Copyright 2013-2014 Douban Inc. All rights reserved.
#
# Use and distribution licensed under the BSD license. See
# the LICENSE file for full text.
#
# Authors:
# Chongyu Zhu <[email protected]>
#
s.name = 'DOUAudioStreamer'
s.version = '0.2.10'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.summary = 'A Core Audio based streaming audio player for iOS/Mac.'
s.homepage = 'https://github.com/douban/DOUAudioStreamer'
s.author = { 'Chongyu Zhu' => '[email protected]' }
s.source = { :git => 'https://github.com/douban/DOUAudioStreamer.git', :tag => s.version.to_s }
s.source_files = 'src/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'Accelerate', 'CFNetwork', 'CoreAudio', 'AudioToolbox', 'AVFoundation', 'MediaPlayer', 'QuartzCore', 'OpenGLES', 'MobileCoreServices'
s.osx.deployment_target = '10.7'
s.osx.framework = 'Accelerate', 'CFNetwork', 'CoreAudio', 'AudioToolbox', 'AudioUnit', 'CoreServices'
end