forked from BeamApp/MusicPlayerViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeamMusicPlayerViewController.podspec
More file actions
22 lines (20 loc) · 1.01 KB
/
BeamMusicPlayerViewController.podspec
File metadata and controls
22 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "BeamMusicPlayerViewController"
s.version = "0.1.0"
s.summary = "An iPhone view controller to visualize and control music playback."
s.homepage = "https://github.com/BeamApp/MusicPlayerViewController"
s.license = {:type => 'New BSD', :file => 'LICENSE'}
s.authors = { 'Moritz Haarmann' => 'http://momo.brauchtman.net', 'Heiko Behrens' => 'http://HeikoBehrens.net' }
s.source = { :git => 'https://github.com/BeamApp/MusicPlayerViewController.git', :tag => '0.1.0' }
s.platform = :ios, '5.0'
s.source_files = FileList['Source/*.{h,m}'].exclude('Source/BeamMPMusicPlayerProvider.{h,m}')
s.resources = 'Source/BeamMusicPlayerController.bundle'
s.frameworks = 'CoreGraphics'
s.requires_arc = true
s.dependency 'OBSlider', '~> 1.1'
s.preferred_dependency = 'MediaPlayer'
s.subspec 'MediaPlayer' do |mediaPlayer|
mediaPlayer.source_files = 'Source/BeamMPMusicPlayerProvider.{h,m}'
mediaPlayer.frameworks = 'MediaPlayer'
end
end