chromium/third_party/tflite_support/src/tensorflow_lite_support/ios/TensorFlowLiteTaskAudio.podspec.template

Pod::Spec.new do |s|
  s.name             = 'TensorFlowLiteTaskAudio'
  s.version          = '${TFLS_BUILD_VERSION}'
  s.authors          = 'Google Inc.'
  s.license          = { :type => 'Apache',:file => "LICENSE" }
  s.homepage         = 'https://github.com/tensorflow/tflite-support'
  s.source           = { :http => '${TFLS_DOWNLOAD_URL}' }
  s.summary          = 'TensorFlow Lite Task Library - Audio'
  s.description      = 'The Audio APIs of the TFLite Task Library'

  s.ios.deployment_target = '10.0'

  s.module_name = 'TensorFlowLiteTaskAudio'
  s.static_framework = true
  s.pod_target_xcconfig = {
     'VALID_ARCHS' => 'x86_64, arm64, armv7',
  }
  s.library = 'c++'
  s.frameworks = 'AVFoundation'
  s.vendored_frameworks = 'Frameworks/TensorFlowLiteTaskAudio.framework'
end