forked from mayakraft/Panorama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PanoramaView.podspec
21 lines (18 loc) · 1.07 KB
/
PanoramaView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "PanoramaView"
s.version = "1.0.1"
s.summary = "sensor-oriented panorama view for iOS"
s.description = <<-DESC
a dynamic GLKView with a touch and motion sensor interface to align and immerse the perspective inside an equirectangular panorama projection
DESC
s.homepage = "https://github.com/robbykraft/Panorama"
s.screenshots = "https://raw.githubusercontent.com/robbykraft/Panorama/master/readme/azimuth-altitude-pixels.png", "https://raw.githubusercontent.com/robbykraft/Panorama/master/readme/park_small.jpg"
s.license = 'MIT'
s.author = { "robbykraft" => "[email protected]" }
s.source = { :git => "https://github.com/robbykraft/Panorama.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/robbykraft'
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Panorama/PanoramaView.m', 'Panorama/PanoramaView.h'
s.frameworks = 'UIKit', 'OpenGLES', 'GLKit', 'CoreMotion'
end