forked from appsquickly/typhoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTyphoon.podspec
16 lines (16 loc) · 885 Bytes
/
Typhoon.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = 'Typhoon'
spec.version = '1.6.3'
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 & Contributors' => '[email protected]' }
spec.source = { :git => 'https://github.com/typhoon-framework', :tag => spec.version.to_s, :submodules => true }
spec.source_files = 'Source/**/*.{h,m}'
spec.ios.exclude_files = "Source/osx"
spec.osx.exclude_files = "Source/ios"
spec.libraries = 'z', 'xml2'
spec.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
spec.requires_arc = true
spec.documentation_url = 'http://www.typhoonframework.org/docs/latest/api/'
end