Last active
December 19, 2015 16:18
-
-
Save kuwabarahiroshi/5982423 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Be sure to run `pod spec lint cocos2d-iphone-extensions.podspec' to ensure this is a | |
# valid spec and remove all comments before submitting the spec. | |
# | |
# To learn more about the attributes see http://docs.cocoapods.org/specification.html | |
# | |
Pod::Spec.new do |s| | |
s.name = "CCScrollLayer" | |
s.version = "0.2.3" | |
s.summary = "CCScrollLayer by 3rd party extensions for cocos2d-iphone" | |
s.homepage = "http://www.cocos2d-iphone.org/forum/forum/17" | |
s.license = 'https://github.com/cocos2d/cocos2d-iphone-extensions/blob/develop-v2/LICENSE.cocos2d-extensions' | |
s.author = 'cocos2d' | |
# use forked version to implement infinit loop. | |
s.source = { :git => "https://github.com/kuwabarahiroshi/cocos2d-iphone-extensions.git", :commit => "d49ca2cd4442af06c15450f5bf4451c97fe973f0" } | |
s.platform = :ios, '5.0' | |
s.source_files = 'Extensions/CCScrollLayer/*.{h,m}' | |
s.requires_arc = false | |
s.xcconfig = { | |
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/cocos2d/external/kazmath/include"' | |
} | |
s.dependency 'cocos2d', '~> 2.1' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment