forked from sboisson/CocoaSSDP
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCocoaSSDP.podspec
More file actions
24 lines (19 loc) · 905 Bytes
/
CocoaSSDP.podspec
File metadata and controls
24 lines (19 loc) · 905 Bytes
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 = "0.1.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" => "sboisson@users.noreply.github.com" }
s.source = { :git => "https://github.com/sboisson/CocoaSSDP.git", :tag => s.version.to_s }
# s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
s.dependency 'CocoaAsyncSocket'
end