Mapbox-iOS-SDK.podspec
1.51 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
32
33
34
35
36
37
38
39
40
41
42
43
Pod::Spec.new do |m|
m.name = 'Mapbox-iOS-SDK'
m.version = '1.4.0'
m.summary = 'An open source toolset for building mapping applications for iOS devices.'
m.description = 'An open source toolset for building mapping applications for iOS devices with great flexibility for visual styling, offline use, and customizability.'
m.homepage = 'https://mapbox.com/mapbox-ios-sdk'
m.license = 'BSD'
m.author = { 'Mapbox' => 'mobile@mapbox.com' }
m.screenshot = 'https://raw.github.com/mapbox/mapbox-ios-sdk/packaging/screenshot.png'
m.social_media_url = 'https://twitter.com/Mapbox'
m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => m.version.to_s }
m.platform = :ios
m.ios.deployment_target = '5.0'
m.source_files = 'Proj4/*.h', 'MapView/Map/*.{h,c,m}'
m.requires_arc = true
m.prefix_header_file = 'MapView/MapView_Prefix.pch'
m.resource_bundle = { 'Mapbox' => 'MapView/Map/Resources/*' }
m.documentation_url = 'https://www.mapbox.com/mapbox-ios-sdk'
m.frameworks = 'CoreGraphics', 'CoreLocation', 'Foundation', 'QuartzCore', 'UIKit'
m.libraries = 'Proj4', 'sqlite3', 'z'
m.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/Mapbox-iOS-SDK/Proj4"' }
m.preserve_paths = 'MapView/MapView.xcodeproj', 'MapView/Map/Resources'
m.vendored_libraries = 'Proj4/libProj4.a'
m.dependency 'FMDB', '2.3'
m.dependency 'GRMustache', '6.8.3'
m.dependency 'SMCalloutView', '2.0'
end