DoubleConversion.podspec 952 B

123456789101112131415161718192021222324
  1. # Copyright (c) Facebook, Inc. and its affiliates.
  2. #
  3. # This source code is licensed under the MIT license found in the
  4. # LICENSE file in the root directory of this source tree.
  5. Pod::Spec.new do |spec|
  6. spec.name = 'DoubleConversion'
  7. spec.version = '1.1.6'
  8. spec.license = { :type => 'MIT' }
  9. spec.homepage = 'https://github.com/google/double-conversion'
  10. spec.summary = 'Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles'
  11. spec.authors = 'Google'
  12. spec.prepare_command = 'mv src double-conversion'
  13. spec.source = { :git => 'https://github.com/google/double-conversion.git',
  14. :tag => "v#{spec.version}" }
  15. spec.module_name = 'DoubleConversion'
  16. spec.header_dir = 'double-conversion'
  17. spec.source_files = 'double-conversion/*.{h,cc}'
  18. spec.compiler_flags = '-Wno-unreachable-code'
  19. # Pinning to the same version as React.podspec.
  20. spec.platforms = { :ios => "10.0", :tvos => "10.0" }
  21. end