summaryrefslogtreecommitdiff
path: root/platform/macos/Mapbox-macOS-SDK.podspec
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2017-01-15 13:18:21 -0800
committerGitHub <noreply@github.com>2017-01-15 13:18:21 -0800
commit4adcdac7b5eeca79411e877ef11d5248f4107963 (patch)
treef9ce3ea04138e74c68ebee3a52bd97128ffb6cf7 /platform/macos/Mapbox-macOS-SDK.podspec
parent15caf0fd6362c525adc0502696226801c6622b1c (diff)
downloadqtlocation-mapboxgl-4adcdac7b5eeca79411e877ef11d5248f4107963.tar.gz
[macos] Upgrade macOS deployment and distribution (#7649)macos-v0.3.0-rc.1
* [macos] Updated deployment scripts Ported fixes from #6581 and #6740. * [macos] Acknowledge AppleScript support * [macos] Prepared for published documentation Also added link to Dash docset. * [macos] Added CocoaPods podspecs Ported from #5653. * [macos] Rewrote readme; updated screenshot * [macos] Include setup instructions in standalone docs
Diffstat (limited to 'platform/macos/Mapbox-macOS-SDK.podspec')
-rw-r--r--platform/macos/Mapbox-macOS-SDK.podspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/platform/macos/Mapbox-macOS-SDK.podspec b/platform/macos/Mapbox-macOS-SDK.podspec
new file mode 100644
index 0000000000..9a3b98b7a0
--- /dev/null
+++ b/platform/macos/Mapbox-macOS-SDK.podspec
@@ -0,0 +1,28 @@
+Pod::Spec.new do |m|
+
+ m.name = 'Mapbox-macOS-SDK'
+ m.version = '0.3.0-rc.1'
+
+ 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://raw.githubusercontent.com/mapbox/mapbox-gl-native/macos-#{m.version.to_s}/platform/macos/docs/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#{m.version.to_s}/mapbox-macos-sdk-#{m.version.to_s}.zip",
+ :flatten => true
+ }
+
+ m.platform = :macos
+ m.macos.deployment_target = '10.10'
+
+ m.requires_arc = true
+
+ m.vendored_frameworks = 'Mapbox.framework'
+ m.module_name = 'Mapbox'
+
+end