blob: 96ed0ebb3e9f9bc95bffe4720e5af53a5d012c10 [file] [log] [blame]
Jens Geyer56e5b9b2015-10-09 22:01:55 +02001Pod::Spec.new do |s|
2 s.name = "Thrift"
Jens Geyer8d21d802019-02-25 22:27:59 +01003 s.version = "0.12.1"
Jens Geyer56e5b9b2015-10-09 22:01:55 +02004 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 software framework, for scalable cross-language services development, combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.
7 DESC
8 s.homepage = "http://thrift.apache.org"
jfarrell384647d2018-10-16 22:36:46 -04009 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" }
Jens Geyer56e5b9b2015-10-09 22:01:55 +020011 s.requires_arc = true
12 s.ios.deployment_target = '7.0'
13 s.osx.deployment_target = '10.8'
14 s.ios.framework = 'CFNetwork'
15 s.osx.framework = 'CoreServices'
Jens Geyer8d21d802019-02-25 22:27:59 +010016 s.source = { :git => "https://github.com/apache/thrift.git", :tag => "v0.12.1" }
Jens Geyer56e5b9b2015-10-09 22:01:55 +020017 s.source_files = 'lib/cocoa/src/**/*.{h,m,swift}'
jfarrell384647d2018-10-16 22:36:46 -040018end