Created
November 8, 2012 10:27
-
-
Save hartbit/4037995 to your computer and use it in GitHub Desktop.
cocos2d 1.1.rc0 podspec fixed
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
Pod::Spec.new do |s| | |
s.name = 'cocos2d' | |
s.license = { :type => 'MIT', :file => 'LICENSE_cocos2d.txt' } | |
s.version = '1.1.rc0' | |
s.summary = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications.' | |
s.description = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications for iPod Touch, iPhone, iPad and Mac. It is based on the cocos2d design but instead of using python it, uses objective-c.' | |
s.homepage = 'http://www.cocos2d-iphone.org' | |
s.author = { 'Ricardo Quesada' => '[email protected]', 'Zynga Inc.' => 'https://zynga.com/' } | |
s.source = {:git => 'https://github.com/cocos2d/cocos2d-iphone.git', :commit => '7ee5b9abf645c32379a45317986a308204277bb1'} | |
s.preferred_dependency = 'cocos2d' | |
s.subspec 'cocos2d' do |cc| | |
cc.source_files = 'cocos2d/**/*.{h,m,c}' | |
cc.frameworks = ["CoreGraphics", "OpenGLES", "QuartzCore"] | |
cc.library = 'z' | |
cc.resources = "Resources/Fonts/fps_images*.png" | |
def cc.copy_header_mapping(from) | |
from.relative_path_from(Pathname.new('cocos2d')) | |
end | |
cc.ios.dependency 'FontLabel' | |
end | |
s.subspec 'CocosDenshion' do |cd| | |
cd.source_file = 'CocosDenshion/CocosDenshion/*.{h,m}' | |
cd.frameworks = ["AVFoundation", "OpenAL", "CoreFoundation", "AudioToolbox", "Foundation"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment