-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCocoaUPnP.podspec
More file actions
34 lines (28 loc) · 1.36 KB
/
CocoaUPnP.podspec
File metadata and controls
34 lines (28 loc) · 1.36 KB
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
Pod::Spec.new do |s|
s.name = "CocoaUPnP"
s.version = "3.1.0"
s.summary = "A modern and well tested UPnP library which feature asynchronous network calls."
s.description = <<-DESC
CocoaUPnP is a logical progression of [upnpx](https://github.com/fkuehne/upnpx)
- designed to be easy, modern and block-based.
Currently it supports most of the methods required by the audio video device
control protocols.
It features a comprehensive suite of unit tests
DESC
s.homepage = "https://github.com/arcam/CocoaUPnP"
s.license = "MIT"
s.author = { "Paul Williamson" => "PaulW@arcam.co.uk" }
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/arcam/CocoaUPnP.git", :tag => s.version.to_s }
s.source_files = "CocoaUPnP", "CocoaUPnP/**/*.{h,m}"
s.requires_arc = true
s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
s.dependency 'CocoaAsyncSocket', '~> 7'
s.dependency 'Ono', '~> 2'
s.dependency 'AFNetworking/NSURLSession', '~> 4'
s.dependency 'AFNetworking/Reachability', '~> 4'
s.dependency 'AFNetworking/Security', '~> 4'
s.dependency 'AFNetworking/Serialization', '~> 4'
s.dependency 'GCDWebServer', '~> 3'
end