-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy pathDOUAudioStreamer_CodeEagle.podspec
More file actions
31 lines (27 loc) · 1.18 KB
/
DOUAudioStreamer_CodeEagle.podspec
File metadata and controls
31 lines (27 loc) · 1.18 KB
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
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 <i@lembacon.com>
#
s.name = "DOUAudioStreamer_CodeEagle"
s.version = "0.2.15"
s.license = { :type => "BSD", :file => "LICENSE" }
s.summary = "A Core Audio based streaming audio player for iOS/Mac. CodeEagle Modified Version"
s.homepage = "https://github.com/CodeEagle/DOUAudioStreamer"
s.author = { "CodeEagle" => "stasura@hotmail.com" }
s.source = { :git => "https://github.com/CodeEagle/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