1Pod::Spec.new do |s|
2  s.name          = 'Thrift'
3  s.version       = '0.18.0'
4  s.summary       = "Apache Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC."
5  s.description   = <<-DESC
6The Apache Thrift scalable cross-language software framework for networked services development combines a software stack with a code generation engine to build services that work efficiently and seamlessly between many programming languages.
7                    DESC
8  s.homepage      = 'https://thrift.apache.org'
9  s.license       = { :type => 'Apache License, Version 2.0', :url => 'https://www.apache.org/licenses/LICENSE-2.0' }
10  s.author        = { 'Apache Thrift Developers' => 'dev@thrift.apache.org' }
11  s.ios.deployment_target = '9.0'
12  s.osx.deployment_target = '10.10'
13  s.source        = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.18.0' }
14  s.source_files  = 'lib/swift/Sources/*.swift'
15end
16