-
Notifications
You must be signed in to change notification settings - Fork 27
/
Animo.podspec
23 lines (20 loc) · 951 Bytes
/
Animo.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Animo"
s.version = "1.4.0"
s.swift_version = "4.1"
s.license = "MIT"
s.summary = "Bring life to CALayers with SpriteKit-like animation builders."
s.homepage = "https://github.com/eure/Animo"
s.author = { "John Rommel Estropia" => "[email protected]" }
s.source = { :git => "https://github.com/eure/Animo.git", :tag => s.version.to_s }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source_files = "Animo", "Animo/**/*.{swift}"
s.ios.frameworks = "Foundation", "CoreGraphics", "QuartzCore", "UIKit"
s.osx.frameworks = "Foundation", "CoreGraphics", "QuartzCore", "AppKit"
# s.watchos.frameworks = "Foundation", "CoreGraphics", "QuartzCore", "UIKit"
# s.tvos.frameworks = "Foundation", "CoreGraphics", "QuartzCore", "UIKit"
s.requires_arc = true
end