forked from Outdooractive/route-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mapbox-iOS-SDK.podspec
80 lines (63 loc) · 2.54 KB
/
Mapbox-iOS-SDK.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Pod::Spec.new do |m|
m.name = 'Mapbox-iOS-SDK-legacy'
m.version = '1.6.2'
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-legacy'
m.license = 'BSD'
m.author = { 'Mapbox' => 'mobile@mapbox.com' }
m.screenshot = 'https://raw.github.com/mapbox/mapbox-ios-sdk-legacy/packaging/screenshot.png'
m.social_media_url = 'https://twitter.com/Mapbox'
m.source = {
:git => 'https://github.com/mapbox/mapbox-ios-sdk-legacy.git',
:tag => m.version.to_s
}
m.platform = :ios
m.ios.deployment_target = '5.0'
m.requires_arc = true
m.module_name = 'Mapbox_iOS_SDK'
m.source_files = 'Proj4/proj_api.h', 'MapView/Map/*.{h,c,m}'
m.prefix_header_file = 'MapView/MapView_Prefix.pch'
m.public_header_files = [
'MapView/Map/Mapbox.h',
'MapView/Map/RMAnnotation.h',
'MapView/Map/RMCacheObject.h',
'MapView/Map/RMCircle.h',
'MapView/Map/RMCircleAnnotation.h',
'MapView/Map/RMCompositeSource.h',
'MapView/Map/RMConfiguration.h',
'MapView/Map/RMCoordinateGridSource.h',
'MapView/Map/RMDatabaseCache.h',
'MapView/Map/RMGreatCircleAnnotation.h',
'MapView/Map/RMInteractiveSource.h',
'MapView/Map/RMMBTilesSource.h',
'MapView/Map/RMMapboxSource.h',
'MapView/Map/RMMapView.h',
'MapView/Map/RMMapViewDelegate.h',
'MapView/Map/RMMarker.h',
'MapView/Map/RMMemoryCache.h',
'MapView/Map/RMPointAnnotation.h',
'MapView/Map/RMPolygonAnnotation.h',
'MapView/Map/RMPolylineAnnotation.h',
'MapView/Map/RMShape.h',
'MapView/Map/RMStaticMapView.h',
'MapView/Map/RMTileCache.h',
'MapView/Map/RMTileMillSource.h',
'MapView/Map/RMUserLocation.h',
'MapView/Map/RMUserTrackingBarButtonItem.h'
]
m.resource_bundle = {
'Mapbox' => 'MapView/Map/Resources/*'
}
m.documentation_url = 'https://www.mapbox.com/mapbox-ios-sdk-legacy'
m.frameworks = 'CoreGraphics', 'CoreLocation', 'Foundation', 'QuartzCore', 'UIKit'
m.libraries = 'Proj4', 'sqlite3', 'z'
m.xcconfig = {
'OTHER_LDFLAGS' => '-ObjC'
}
m.preserve_paths = 'MapView/MapView.xcodeproj', 'MapView/Map/Resources'
m.vendored_libraries = 'Proj4/libProj4.a'
m.dependency 'FMDB', '~> 2.3'
m.dependency 'GRMustache', '~> 7.3.0'
m.dependency 'SMCalloutView', '~> 2.1'
end