forked from n1mda/sonos-objc
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSonos.podspec
23 lines (20 loc) · 983 Bytes
/
Sonos.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Sonos"
s.version = "0.1.3"
s.description = <<-EOL
The aim of this library is to create a simple to use, yet useful API to control Sonos Devices via SOAP. It depends on AFNetworking (iOS and OS X), CocoaAsyncSocket (iOS and OS X) and XMLReader.h/m (iOS and OS X)
EOL
s.summary = "An Objective-C API for controlling Sonos Devices."
s.homepage = "https://github.com/getsenic/sonos-objc"
s.license = 'MIT'
s.author = { "n1mda" => "[email protected]", "Lars Blumberg" => "[email protected]" }
s.source = { :git => "https://github.com/getSenic/sonos-objc.git", :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'sonos-objc/**/*.{h,m}'
s.public_header_files = 'sonos-objc/**/*.h'
s.dependency 'AFNetworking', '~> 3.0'
s.dependency 'CocoaAsyncSocket', '~> 7.4.2'
end