-
Notifications
You must be signed in to change notification settings - Fork 1
/
CocosBlocksAnimation.podspec
26 lines (18 loc) · 1.15 KB
/
CocosBlocksAnimation.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
Pod::Spec.new do |s|
s.name = "CocosBlocksAnimation"
s.version = "0.0.1"
s.summary = "Block-based animation helpers for Cocos2d."
s.description = "CocosBlocksAnimation is inspired by block-based UIView animation approach.
It allows you to create cocos2d animations easier — with the same approach as with UIView animations:
just describe the properties of your CCNode after animation duration and don't worry about any other things."
s.homepage = "https://github.com/tkach/CocosBlocksAnimation"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Alexander Tkachenko" => "[email protected]" }
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/tkach/CocosBlocksAnimation.git", :commit => 'a3bf6fce7cad1d825739ab67e7eff95acdbece73' }
s.source_files = 'CocosBlocksAnimation/CocosBlocksAnimation/**/*.{h,m,mm}'
s.public_header_files = 'CocosBlocksAnimation/CocosBlocksAnimation/CocosBlocksAnimation.h'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/cocos2d/external/kazmath/include"' }
s.requires_arc = false
s.dependency 'cocos2d', '~> 2.1'
end