-
Notifications
You must be signed in to change notification settings - Fork 16
/
SCNLine.podspec
21 lines (21 loc) · 1.61 KB
/
SCNLine.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "SCNLine"
s.version = ENV['LIB_VERSION'] || "1.3.0"
s.summary = "SCNLine lets you draw tubes."
s.description = <<-DESC
draw a thick line in SceneKit
DESC
s.homepage = "https://github.com/maxxfrazer/SCNLine"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "Max Cobb"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/maxxfrazer/SceneKit-SCNLine.git", :tag => "#{s.version}" }
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = "11"
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Sources/SCNLine/*.swift"
end