-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCoreAudioDebugging.podspec
More file actions
31 lines (23 loc) · 1.32 KB
/
CoreAudioDebugging.podspec
File metadata and controls
31 lines (23 loc) · 1.32 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|
s.name = "CoreAudioDebugging"
s.version = "0.0.2"
s.summary = "Pretty-print AudioStreamBasicDefinition and AudioComponentDescription structures."
s.description = <<-DESC
Really, I just created these functions because I became very tired of
trying to hand-decode Apple's CoreAudio
[AudioStreamBasicDefinition](http://google.com/search?q=Apple+Developer+AudioStreamBasicDescription)
structures. Also, when using [CAShow](http://google.com/search?q=Apple+Developer+Audio+Toolbox+Debugging+Reference+CAShow)
I became even more weary of tring to remember all of the various
`OSType` [FourCC](http://en.wikipedia.org/wiki/FourCC) codes that CoreAudio uses.
DESC
s.homepage = "https://github.com/adfernandes/CoreAudioDebugging"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andrew Fernandes" => "andrew@fernandes.org" }
s.source = { :git => "https://github.com/adfernandes/CoreAudioDebugging.git", :tag => s.version.to_s }
s.source_files = '*.{h,mm,cpp}'
s.public_header_files = '*.h'
s.ios.deployment_target = "7.0"
s.ios.libraries = "c++"
s.osx.deployment_target = "10.9"
s.osx.libraries = "c++"
end