-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathObjective-CUPS.podspec
More file actions
23 lines (18 loc) · 930 Bytes
/
Objective-CUPS.podspec
File metadata and controls
23 lines (18 loc) · 930 Bytes
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 = "Objective-CUPS"
s.version = "0.2.1"
s.summary = "Objective-C framework for interacting with the CUPS system."
s.description = <<-DESC
Objective-C framework for interacting with the CUPS system. The Printer object conforms to
NSSecureCoding to be used with a NSXPC Service and priviledged helper tool so non-admin
users can manage printers themselves.
DESC
s.homepage = "https://github.com/eahrold/Objective-CUPS"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = "Eldon Ahrold"
s.source = { :git => "https://github.com/eahrold/Objective-CUPS.git", :tag => "0.2.1" }
s.source_files = 'Objective-CUPS', 'Objective-CUPS/**/*.{h,m}'
s.libraries = 'cups','z'
s.osx.deployment_target = "10.8"
s.requires_arc = true
end