forked from iziz/libPhoneNumber-iOS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
libPhoneNumberShortNumber.podspec
22 lines (22 loc) · 1.14 KB
/
libPhoneNumberShortNumber.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "libPhoneNumberShortNumber"
s.version = "1.0.0"
s.summary = "Short Number Support for libPhoneNumber-iOS"
s.description = <<-DESC
libPhoneNumberShortNumber for iOS
iOS library for implementing libPhoneNumber features on short numbers.
DESC
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 = { "rastaarh" => "[email protected]", "paween" => "[email protected]"}
s.source = { :git => "https://github.com/iziz/libPhoneNumber-iOS.git", :tag => s.version.to_s }
s.libraries = 'z'
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "10.0"
s.requires_arc = true
s.private_header_files = 'libPhoneNumberShortNumber/NBGeneratedShortNumberMetadata.h'
s.dependency 'libPhoneNumber-iOS'
s.source_files = 'libPhoneNumberShortNumber/NBShortNumberUtil.{h,m}', 'libPhoneNumberShortNumber/NBShortNumberMetadataHelper.{h,m}', 'libPhoneNumberShortNumber/NBGeneratedShortNumberMetadata.h'
end