forked from leeway1208/MqttCocoaAsyncSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMqttCocoaAsyncSocket.podspec
38 lines (30 loc) · 1.83 KB
/
MqttCocoaAsyncSocket.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
29
30
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = 'MqttCocoaAsyncSocket'
s.version = '1.0.5'
s.license = { :type => 'public domain', :text => <<-LICENSE
Public Domain License
The MqttCocoaAsyncSocket project is in the public domain.
The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003.
Updated and maintained by Deusty LLC and the Apple development community.
LICENSE
}
s.summary = 'A socket kit based on CocoaAsyncSocket.Fix iOS16 bugs'
s.homepage = 'https://github.com/leeway1208/MqttCocoaAsyncSocket'
s.authors = 'Dustin Voss', { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
s.source = { :git => 'https://github.com/leeway1208/MqttCocoaAsyncSocket.git',
:tag => "#{s.version}" }
s.description = 'MqttCocoaAsyncSocket supports TCP and UDP. The AsyncSocket class is for TCP, and the AsyncUdpSocket class is for UDP. ' \
'AsyncSocket is a TCP/IP socket networking library that wraps CFSocket and CFStream. It offers asynchronous ' \
'operation, and a native Cocoa class complete with delegate support or use the GCD variant GCDAsyncSocket. ' \
'AsyncUdpSocket is a UDP/IP socket networking library that wraps CFSocket. It works almost exactly like the TCP ' \
'version, but is designed specifically for UDP. This includes queued non-blocking send/receive operations, full ' \
'delegate support, run-loop based, self-contained class, and support for IPv4 and IPv6.'
s.source_files = 'Source/GCD/*.{h,m,swift}'
s.requires_arc = true
s.osx.deployment_target = "10.12"
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "10.0"
s.ios.frameworks = 'CFNetwork', 'Security'
s.tvos.frameworks = 'CFNetwork', 'Security'
s.osx.frameworks = 'CoreServices', 'Security'
end