-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCocoaSSDP.podspec
24 lines (19 loc) · 909 Bytes
/
CocoaSSDP.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
Pod::Spec.new do |s|
s.name = "CocoaSSDP"
s.version = "1.0.0"
s.summary = "Simple Service Discovery Protocol client library for Mac and iOS."
s.homepage = "https://github.com/sboisson/CocoaSSDP"
s.description = <<-DESC
Simple Service Discovery Protocol client library for Mac and iOS.
SSDP allow client app to discover devices on local network (ex: UPnP, DLNA..)
DESC
s.license = 'MIT'
s.author = { "Stephane Boisson" => "[email protected]" }
s.source = { :git => "https://github.com/sboisson/CocoaSSDP.git", :tag => s.version.to_s }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Classes'
s.dependency 'CocoaAsyncSocket'
end