-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSMJobKit.podspec
24 lines (23 loc) · 1.29 KB
/
SMJobKit.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
Pod::Spec.new do |s|
s.name = "SMJobKit"
s.version = "0.0.21"
s.swift_version = '5.0'
s.summary = "Framework that simplifies SMJobBless."
s.homepage = "https://github.com/IngmarStein/SMJobKit"
s.authors = { "Ian MacLeod" => "[email protected]", "Ingmar Stein" => "[email protected]" }
s.source = { :git => "https://github.com/IngmarStein/SMJobKit.git", :tag => "0.0.19" }
s.platform = :osx, '10.9'
s.source_files = 'Sources/**/*.{h,swift}'
s.framework = 'ServiceManagement', 'Security'
s.requires_arc = true
s.static_framework = true
s.public_header_files = 'Sources/*.h'
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE.txt" }
s.description = <<-DESC
Using SMJobBless and friends is rather ...painful. SMJobKit does everything in its power to alleviate that and get you back to writing awesome macOS apps.
SMJobKit is more than just a framework/library to link against. It gives you:
- A Xcode target template for SMJobBless-ready launchd services, completely configured for proper code signing!
- A client abstraction that manages installing/upgrading your app's service(s).
- A service library that pulls in as little additional code as possible. Less surface area for security vulnerabilities!
DESC
end