summaryrefslogtreecommitdiff
path: root/platform/macos/Mapbox-macOS-SDK.podspec
blob: 14b742609757f6b8a8bf64b32e145af22863f25f (plain)
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
Pod::Spec.new do |m|

  version = '0.7.0'

  m.name    = 'Mapbox-macOS-SDK'
  m.version = version

  m.summary           = 'Open-source, interactive, fully customizable vector maps.'
  m.description       = 'Interactive, fully customizable vector maps with tight platform integration and high-performance OpenGL rendering.'
  m.homepage          = 'https://mapbox.github.io/mapbox-gl-native/macos/'
  m.license           = { :type => 'BSD', :file => 'LICENSE.md' }
  m.author            = { 'Mapbox' => 'mobile@mapbox.com' }
  m.screenshot        = "https://mapbox.github.io/mapbox-gl-native/macos/#{version}/img/screenshot.jpg"
  m.social_media_url  = 'https://twitter.com/mapbox'
  m.documentation_url = 'https://mapbox.github.io/mapbox-gl-native/macos/'

  m.source = {
    :http => "https://github.com/mapbox/mapbox-gl-native/releases/download/macos-v#{version}/mapbox-macos-sdk-#{m.version.to_s}.zip",
    :flatten => true
  }

  m.platform              = :osx
  m.osx.deployment_target = '10.11'

  m.requires_arc = true

  m.vendored_frameworks = 'Mapbox.framework'
  m.module_name = 'Mapbox'

end