forked from DigitalDJ/AudioStreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudioStreamer.podspec
36 lines (23 loc) · 1.15 KB
/
AudioStreamer.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
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "AudioStreamer"
s.version = "1.0.0"
s.summary = "A short description of AudioStreamer."
s.description = <<-DESC
A longer description of AudioStreamer in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/DigitalDJ/AudioStreamer"
s.license = 'Not found'
s.author = { 'Ullrich Schäfer' => '[email protected]' }
s.platform = :ios, :osx
s.ios.deployment_target = '5.0'
#s.osx.deployment_target = '10.7'
s.requires_arc = false
s.source = { :git => "https://github.com/DigitalDJ/AudioStreamer.git" }
s.source_files = 'Classes/{AudioStreamer,UIDevice+Hardware}.{h,m}'
s.frameworks = 'CFNetwork', 'AudioToolbox', 'Foundation', 'AVFoundation', 'MediaPlayer'
# s.requires_arc = true
end