You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.1 KiB
21 lines
1.1 KiB
Pod::Spec.new do |spec| |
|
spec.name = 'pop' |
|
spec.version = '1.0.9' |
|
spec.license = { :type => 'BSD' } |
|
spec.homepage = 'https://github.com/facebook/pop' |
|
spec.authors = { 'Kimon Tsinteris' => 'kimon@mac.com' } |
|
spec.summary = 'Extensible animation framework for iOS and OS X.' |
|
spec.source = { :git => 'https://github.com/facebook/pop.git', :tag => '1.0.9' } |
|
spec.source_files = 'pop/**/*.{h,m,mm,cpp}' |
|
spec.public_header_files = 'pop/{POP,POPAnimatableProperty,POPAnimation,POPAnimationEvent,POPAnimationExtras,POPAnimationTracer,POPAnimator,POPBasicAnimation,POPCustomAnimation,POPDecayAnimation,POPDefines,POPGeometry,POPLayerExtras,POPPropertyAnimation,POPSpringAnimation}.h' |
|
spec.requires_arc = true |
|
spec.social_media_url = 'https://twitter.com/fbOpenSource' |
|
spec.library = 'c++' |
|
spec.pod_target_xcconfig = { |
|
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11', |
|
'CLANG_CXX_LIBRARY' => 'libc++' |
|
} |
|
spec.ios.deployment_target = '6.0' |
|
spec.osx.deployment_target = '10.7' |
|
spec.tvos.deployment_target = '9.0' |
|
end
|
|
|