-
Notifications
You must be signed in to change notification settings - Fork 5
/
INetworkPacketParser.podspec
28 lines (24 loc) · 1003 Bytes
/
INetworkPacketParser.podspec
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
#
# Be sure to run `pod lib lint INetworkPacketParser.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'INetworkPacketParser'
s.version = '0.1.0'
s.summary = 'ip packet, tcp, udp and dns parser'
s.description = <<-DESC
1. support ip pacekt parser
2. support tcp / udp parser
3. support dns parser
DESC
s.homepage = 'https://github.com/smallyou/INetworkPacketParser'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'smallyou' => '[email protected]' }
s.source = { :git => 'https://github.com/smallyou/INetworkPacketParser.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.libraries = 'resolv'
s.source_files = 'INetworkPacketParser/Classes/**/*'
end