-
Notifications
You must be signed in to change notification settings - Fork 76
/
LIFXKit.podspec
26 lines (20 loc) · 1.34 KB
/
LIFXKit.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
Pod::Spec.new do |s|
s.name = "LIFXKit"
s.version = "0.6.1"
s.summary = "LIFXKit is the LIFX SDK for Objective-C."
s.description = <<-DESC
LIFXKit lets you control your LIFX lights from iOS or OS X.
DESC
s.homepage = "http://github.com/LIFX/LIFXKit/"
s.license = 'MIT'
s.author = { "Nick Forge" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/LIFX/LIFXKit.git", :tag => "v0.6.1" }
s.public_header_files = 'LIFXKit/LIFXKit.h', 'LIFXKit/Classes-Common/LFX{Client,NetworkContext,Light,LightCollection,TaggedLightCollection,Types,HSBKColor,Target,Device}.h'
s.ios.source_files = 'LIFXKit/Classes-Common/*.{h,m}', 'LIFXKit/Classes-iOS/*.{h,m}', 'LIFXKit/Extensions/LFXExtensions.h', 'LIFXKit/Extensions/{Categories-Cocoa,Categories-UIKit,Functions,Macros}/*.{h,m}', 'LIFXKit/CocoaAsyncSocket/GCD/*.{h,m}', 'LIFXKit/LIFXKit.h'
s.osx.source_files = 'LIFXKit/Classes-Common/*.{h,m}', 'LIFXKit/Classes-OSX/*.{h,m}', 'LIFXKit/Extensions/LFXExtensions.h', 'LIFXKit/Extensions/{Categories-Cocoa,Functions,Macros}/*.{h,m}', 'LIFXKit/CocoaAsyncSocket/GCD/*.{h,m}', 'LIFXKit/LIFXKit.h'
s.frameworks = 'SystemConfiguration'
s.libraries = 'z'
s.requires_arc = true
end