UNPKG

950 BPlain TextView Raw
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
6Pod::Spec.new do |spec|
7 spec.name = 'DoubleConversion'
8 spec.version = '1.1.6'
9 spec.license = { :type => 'MIT' }
10 spec.homepage = 'https://github.com/google/double-conversion'
11 spec.summary = 'Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles'
12 spec.authors = 'Google'
13 spec.prepare_command = 'mv src double-conversion'
14 spec.source = { :git => 'https://github.com/google/double-conversion.git',
15 :tag => "v#{spec.version}" }
16 spec.module_name = 'DoubleConversion'
17 spec.header_dir = 'double-conversion'
18 spec.source_files = 'double-conversion/*.{h,cc}'
19 spec.compiler_flags = '-Wno-unreachable-code'
20
21 # Pinning to the same version as React.podspec.
22 spec.platforms = { :ios => "9.0", :tvos => "9.2" }
23
24end