diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2017-01-16 10:16:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-16 10:16:40 -0800 |
commit | 13b97dd0cebffe36b187bdb74923910def6bd87b (patch) | |
tree | b5def9897ddfcbafab1aeacab6d32ca3cf8c58e5 /platform/macos/Mapbox-macOS-SDK-symbols.podspec | |
parent | 4adcdac7b5eeca79411e877ef11d5248f4107963 (diff) | |
download | qtlocation-mapboxgl-13b97dd0cebffe36b187bdb74923910def6bd87b.tar.gz |
[ios, macos] Correct podspecs, readmes (#7730)
* [macos] RC 1 errata
Synchronized bundled README installation instructions with those in INSTALL.md. Bumped screenshot up a bit. Corrected link to published documentation.
* [ios, macos] Corrected podspec URLs
Fixed podspec linter errors. The podspecs were pointing to unreachable (or soon to be unreachable) screenshot URLs. The -symbols podspecs’ names additionally needed to differ from the normal podspecs’ names.
Diffstat (limited to 'platform/macos/Mapbox-macOS-SDK-symbols.podspec')
-rw-r--r-- | platform/macos/Mapbox-macOS-SDK-symbols.podspec | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/platform/macos/Mapbox-macOS-SDK-symbols.podspec b/platform/macos/Mapbox-macOS-SDK-symbols.podspec index 7083f70961..6de7f829a3 100644 --- a/platform/macos/Mapbox-macOS-SDK-symbols.podspec +++ b/platform/macos/Mapbox-macOS-SDK-symbols.podspec @@ -1,24 +1,26 @@ Pod::Spec.new do |m| - m.name = 'Mapbox-macOS-SDK' - m.version = '0.3.0-rc.1-symbols' + version = '0.3.0-rc.1' + + m.name = 'Mapbox-macOS-SDK-symbols' + m.version = "#{version}-symbols" 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.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#{m.version.to_s}/mapbox-macos-sdk-#{m.version.to_s}.zip", + :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 = :macos - m.macos.deployment_target = '10.10' + m.platform = :osx + m.osx.deployment_target = '10.10' m.requires_arc = true |