-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSPMJPGStream.podspec
More file actions
23 lines (22 loc) · 1.01 KB
/
SPMJPGStream.podspec
File metadata and controls
23 lines (22 loc) · 1.01 KB
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 = "SPMJPGStream"
s.version = "0.0.1"
s.summary = "Fetch a MJPG stream from an Axis camera. For iOS and OS X."
s.description = <<-DESC
SPMJPEG makes it easy to stream an MJPEG stream from any Axis camera.
Supports Basic Auth and a few parameters like fps and resolution.
DESC
s.homepage = "https://github.com/Spiideo/SPMJPGStream"
s.license = 'MIT (example)'
# s.license = { :type => 'MIT', :file => 'FILE_LICENSE' }
s.author = { "Gustaf Lindqvist" => "gustaf@spiideo.com" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/Spiideo/SPMJPGStream.git", :commit => "9f126c4acdc9bdad968e23ad42c5762dd92b69b4" }
s.source_files = 'Classes/*.{h,m}'
# s.exclude_files = 'Classes/Exclude'
s.public_header_files = 'Classes/*.h'
s.requires_arc = true
s.dependency 'ReactiveCocoa'
s.dependency 'libextobjc/EXTScope'
end