-
Notifications
You must be signed in to change notification settings - Fork 51
/
MapboxSceneKit.podspec
50 lines (31 loc) · 2.64 KB
/
MapboxSceneKit.podspec
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MapboxSceneKit"
s.version = "0.1.0"
s.summary = "Scene Kit toolkit for Mapbox."
s.description = "Using Swift, bringing our rich 3D terrain into your iOS app is easy.
SceneKit SDK benefits from Apple’s toolchain and tight integration with
ARKit. Using Apple's built-in Scene Kit frameworks means you can leverage
compelling virtual terrain experiences without bloating your app's size."
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "ISC", :file => "LICENSE.md" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Mapbox" => "mobile@mapbox.com" }
s.social_media_url = "https://twitter.com/mapbox"
s.homepage = "mapbox.com"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/mapbox/mapbox-scenekit-ios.git", :tag => "v#{s.version.to_s}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = ["MapboxSceneKit/**/*.{swift,metal}"]
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.module_name = "MapboxSceneKit"
s.dependency "MapboxMobileEvents", "~> 0.4"
# `swift_version` was introduced in CocoaPods 1.4.0. Without this check, if a user were to
# directly specify this podspec while using <1.4.0, ruby would throw an unknown method error.
if s.respond_to?(:swift_version)
s.swift_version = "4.0"
end
end