STT-tensorflow/tensorflow/lite/experimental/ios/TensorFlowLiteC.podspec
A. Unique TensorFlower 0323b1af56 Updates TensorFlow Lite podspecs for 1.14.0 release.
PiperOrigin-RevId: 260230313
2019-07-26 16:21:08 -07:00

24 lines
948 B
Ruby

Pod::Spec.new do |s|
s.name = 'TensorFlowLiteC'
s.version = '1.14.0'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache' }
s.homepage = 'https://github.com/tensorflow/tensorflow'
s.source = { :http => "https://dl.google.com/dl/cpdc/0e27bc28472e2519/TensorFlowLiteC-#{s.version}.tar.gz" }
s.summary = 'TensorFlow Lite'
s.description = <<-DESC
An internal-only pod containing the TensorFlow Lite C library that the public
`TensorFlowLiteSwift` and `TensorFlowLiteObjC` pods depend on. This pod is not
intended to be used directly. Swift developers should use the
`TensorFlowLiteSwift` pod and Objective-C developers should use the
`TensorFlowLiteObjC` pod.
DESC
s.ios.deployment_target = '9.0'
s.module_name = 'TensorFlowLiteC'
s.library = 'c++'
s.vendored_frameworks = 'Frameworks/TensorFlowLiteC.framework'
end