forked from awojnowski/libPhoneNumber-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibPhoneNumber-iOS.podspec
19 lines (19 loc) · 1.28 KB
/
libPhoneNumber-iOS.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "libPhoneNumber-iOS"
s.version = "0.61"
s.summary = "iOS library for parsing, formatting, storing and validating international phone numbers from libphonenumber library."
s.description = <<-DESC
libPhoneNumber for iOS
iOS library for parsing, formatting, storing and validating international phone numbers from libphonenumber library.
Visit http://code.google.com/p/libphonenumber/ for more information.
DESC
s.homepage = "https://github.com/iziz/libPhoneNumber-iOS"
s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
s.authors = { "iziz" => "[email protected]", "hyukhur" => "[email protected]" }
s.source = { :git => "https://github.com/iziz/libPhoneNumber-iOS.git", :tag => "0.61" }
s.platform = :ios, '4.3'
s.framework = 'CoreTelephony'
s.requires_arc = true
s.source_files = 'libPhoneNumber/NBPhoneNumber.{h,m}', 'libPhoneNumber/NBNumberFormat.{h,m}', 'libPhoneNumber/NBPhoneNumberDesc.{h,m}', 'libPhoneNumber/NBPhoneMetaData.{h,m}', 'libPhoneNumber/NBPhoneNumberUtil.{h,m}', 'libPhoneNumber/NBAsYouTypeFormatter.{h,m}', 'libPhoneNumber/NBPhoneNumberDefines.h', 'libPhoneNumber/NSArray+NBAdditions.{h,m}'
s.resources = "libPhoneNumber/NBPhoneNumberMetadata.plist"
end