-
Notifications
You must be signed in to change notification settings - Fork 26
/
BezierKit.podspec
27 lines (23 loc) · 1006 Bytes
/
BezierKit.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
#
# Be sure to run `pod spec lint BezierKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
Pod::Spec.new do |s|
s.name = "BezierKit"
s.version = "0.16.1"
s.summary = "comprehensive Bezier Path library written in Swift"
s.homepage = "https://github.com/hfutrell/BezierKit"
s.license = "MIT"
s.author = { "Holmes Futrell" => "[email protected]" }
s.swift_version = "5.3"
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.12"
s.ios.framework = 'UIKit', 'CoreGraphics'
s.osx.framework = 'AppKit'
#s.tvos.deployment_target = '9.0'
#s.watchos.deployment_target = '2.0'
s.source = { :git => "https://github.com/hfutrell/BezierKit.git", :tag => "v#{s.version}"}
#s.source = { :git => "https://github.com/hfutrell/BezierKit.git", :branch => "#{s.version}-release"}
s.source_files = "BezierKit/Library"
#s.exclude_files = "Classes/Exclude"
end