Skip to content

Commit

Permalink
Merge pull request #7943 from jasperblues/master
Browse files Browse the repository at this point in the history
Add Typhoon 1.7.9
  • Loading branch information
keith committed Feb 12, 2014
2 parents 8f903ba + 8ca74ff commit 4a7247b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Typhoon/1.7.9/Typhoon.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Pod::Spec.new do |spec|
spec.name = 'Typhoon'
spec.version = '1.7.9'
spec.license = 'Apache2.0'
spec.summary = 'A dependency injection container for Objective-C. Light-weight, yet flexible and full-featured.'
spec.homepage = 'http://www.typhoonframework.org'
spec.author = {'Jasper Blues, Robert Gilliam, Daniel Rodríguez, Erik Sundin, Aleksey Garbarev & Contributors' => 'info@typhoonframework.org'}
spec.source = {:git => 'https://github.com/typhoon-framework/Typhoon.git', :tag => spec.version.to_s, :submodules => true}

spec.ios.deployment_target = '5.0'
spec.osx.deployment_target = '10.7'

spec.libraries = 'z', 'xml2'
spec.xcconfig = {'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}

spec.source_files = 'Source/**/*.{h,m}'
non_arc_files = 'Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.{h,m}'
spec.ios.exclude_files = 'Source/osx', non_arc_files
spec.osx.exclude_files = 'Source/ios', non_arc_files

spec.requires_arc = true
spec.subspec 'no-arc' do |sna|
sna.requires_arc = false
sna.source_files = non_arc_files
end


spec.documentation_url = 'http://www.typhoonframework.org/docs/latest/api/'
end

0 comments on commit 4a7247b

Please sign in to comment.