-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathlibPhoneNumberTimeZones.podspec
More file actions
35 lines (28 loc) · 1.22 KB
/
libPhoneNumberTimeZones.podspec
File metadata and controls
35 lines (28 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "libPhoneNumberTimeZones"
s.version = "1.7.0"
s.summary = "Timezone metadata features for libPhoneNumber-iOS"
s.description = "Timezone metadata lookup for libPhoneNumber-iOS. This optional module stores timezone prefix metadata on disk."
s.homepage = "https://github.com/iziz/libPhoneNumber-iOS.git"
s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
s.authors = {
"iziz" => "zen.isis@gmail.com",
"hyukhur" => "hyukhur@gmail.com",
"Kris Kline" => "kris.kline@oracle.com"
}
s.source = {
:git => "https://github.com/iziz/libPhoneNumber-iOS.git",
:tag => s.version.to_s
}
s.libraries = 'sqlite3'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "12.0"
s.requires_arc = true
s.resources = "libPhoneNumberTimeZonesMetaData/*.bundle"
s.dependency 'libPhoneNumber-iOS', '~> 1.7.0'
s.source_files = [
'libPhoneNumberTimeZones/**/*.{h,m}',
]
end