Skip to content

Instantly share code, notes, and snippets.

@ccarse
Created July 29, 2013 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccarse/6106102 to your computer and use it in GitHub Desktop.
Save ccarse/6106102 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |m|
m.name = 'MapBox'
m.version = '1.0.3'
m.summary = 'Open source alternative to MapKit.'
m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.'
m.homepage = 'http://mapbox.com/mobile'
m.license = 'BSD'
m.author = { 'MapBox' => 'ios@mapbox.com' }
m.screenshot = 'https://raw.github.com/mapbox/mapbox-ios-sdk/packaging/screenshot.png'
m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :branch => 'release' }
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.pre_install do |pod, target_definition|
Dir.chdir(pod.root) do
command = "xcodebuild -project MapView/MapView.xcodeproj -target Resources CONFIGURATION_BUILD_DIR=../Resources"
unless system(command)
raise ::Pod::Informative, "Failed to generate MapBox resources bundle"
end
end
end
m.resources = 'Resources/MapBox.bundle'
m.documentation = {
:html => 'http://mapbox.com/mapbox-ios-sdk/api/',
:appledoc => [
'--project-company', 'MapBox',
'--docset-copyright', 'MapBox',
'--no-keep-undocumented-objects',
'--no-keep-undocumented-members',
'--ignore', '.c',
'--ignore', '.m',
'--ignore', 'Proj4',
'--ignore', 'RMAttributionViewController.h',
'--ignore', 'RMBingSource.h',
'--ignore', 'RMCoordinateGridSource.h',
'--ignore', 'RMDBMapSource.h',
'--ignore', 'RMFoundation.h',
'--ignore', 'RMFractalTileProjection.h',
'--ignore', 'RMGenericMapSource.h',
'--ignore', 'RMGlobalConstants.h',
'--ignore', 'RMLoadingTileView.h',
'--ignore', 'RMMapOverlayView.h',
'--ignore', 'RMMapQuestOpenAerialSource.h',
'--ignore', 'RMMapQuestOSMSource.h',
'--ignore', 'RMMapScrollView.h',
'--ignore', 'RMMapTiledLayerView.h',
'--ignore', 'RMNotifications.h',
'--ignore', 'RMOpenCycleMapSource.h',
'--ignore', 'RMOpenSeaMapLayer.h',
'--ignore', 'RMOpenSeaMapSource.h',
'--ignore', 'RMPixel.h',
'--ignore', 'RMProjection.h',
'--ignore', 'RMTile.h',
'--ignore', 'RMTileImage.h',
'--ignore', 'RMTileSourcesContainer.h',
]
}
m.frameworks = 'CoreGraphics', 'CoreLocation', 'Foundation', 'QuartzCore', 'UIKit'
m.libraries = 'Proj4', 'sqlite3', 'z'
m.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/MapBox/Proj4"' }
m.preserve_paths = 'Proj4/libProj4.a', 'MapView/MapView.xcodeproj', 'MapView/Map/Resources'
m.dependency 'FMDB', '2.0'
m.dependency 'GRMustache', '5.4.3'
m.dependency 'SMCalloutView', '1.1'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment