forked from nhurden/MediaKeyTap
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMediaKeyTap.podspec
More file actions
executable file
·15 lines (13 loc) · 581 Bytes
/
MediaKeyTap.podspec
File metadata and controls
executable file
·15 lines (13 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "MediaKeyTap"
s.version = "3.1.0"
s.summary = "Access the Mac's media keys in Swift"
s.homepage = "https://github.com/nhurden/MediaKeyTap"
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { "Nicholas Hurden" => "git@nhurden.com" }
s.source = { git: "https://github.com/the0neyouseek/MediaKeyTap.git", tag: s.version.to_s }
s.platform = :osx, '10.10'
s.requires_arc = true
s.source_files = 'MediaKeyTap/*.{swift}'
s.framework = 'CoreGraphics'
end