Last active
August 29, 2015 13:56
-
-
Save f1fe/8833391 to your computer and use it in GitHub Desktop.
SparrowFrameworkLatest
This file contains hidden or 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 = 'Sparrow-Framework' | |
s.version = '2' | |
s.license = 'Simplified BSD' | |
s.summary = 'Objective-C library inspired by Adobe™ Flash and Starling that was built from ground up for iPhone, iPad and iPod Touch.' | |
s.description = 'Sparrow is a pure Objective-C library that was built from ground up for iPhone, iPad and iPod Touch. If you have already worked with Adobe™ Flash or Starling, you will feel right at home: Sparrow uses the same concepts and naming schemes.' | |
s.homepage = 'http://gamua.com/sparrow/' | |
s.author = { 'Daniel Sperl' => 'https://twitter.com/PrimaryFeather', | |
'Holger Weissböck' => 'https://twitter.com/holgua', | |
'Gamua' => 'http://gamua.com/' } | |
s.source = { :git => 'https://github.com/Gamua/Sparrow-Framework.git' } | |
s.platform = :ios, '5.0' | |
s.source_files = 'sparrow/src/Classes/*.{h,m}' | |
s.exclude_files = 'sparrow/src/Classes/SPPoolObject.{h,m}' | |
s.frameworks = 'GLKit', 'OpenGLES', 'OpenAL', 'QuartzCore', 'AudioToolbox', 'AVFoundation' | |
s.library = 'z' | |
s.requires_arc = true | |
s.subspec 'no-arc' do |sp| | |
sp.source_files = 'sparrow/src/Classes/SPPoolObject.{h,m}' | |
sp.requires_arc = false | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment