29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Google-Maps-iOS-SDK'
|
|
s.version = '1.0.2'
|
|
s.summary = 'Google Maps SDK for iOS.'
|
|
s.description = 'With the Google Maps SDK for iOS, you can add maps based on Google maps data to your application.'
|
|
s.homepage = 'https://developers.google.com/maps/documentation/ios/'
|
|
s.license = {
|
|
:type => 'Copyright',
|
|
:text => 'Copyright 2012 Google Inc.'
|
|
}
|
|
s.author = 'Google Inc.'
|
|
|
|
s.source = { :http => 'https://dl.google.com/geosdk/GoogleMaps-iOS-1.0.2.zip' }
|
|
s.platform = :ios
|
|
|
|
framework_path = 'GoogleMaps.framework'
|
|
|
|
s.source_files = "#{framework_path}/Headers/*.h"
|
|
s.resource = "#{framework_path}/Resources/GoogleMaps.bundle"
|
|
|
|
s.preserve_paths = framework_path
|
|
s.header_dir = 'GoogleMaps'
|
|
|
|
s.frameworks = 'GoogleMaps', 'AVFoundation', 'CoreData', 'CoreLocation', 'CoreText', 'GLKit', 'ImageIO', 'OpenGLES', 'QuartzCore', 'SystemConfiguration', 'CoreGraphics'
|
|
s.libraries = 'icucore', 'stdc++', 'z'
|
|
|
|
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Google-Maps-iOS-SDK"' }
|
|
end
|