-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathJSQSystemSoundPlayer.podspec
More file actions
23 lines (17 loc) · 729 Bytes
/
JSQSystemSoundPlayer.podspec
File metadata and controls
23 lines (17 loc) · 729 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 = 'JSQSystemSoundPlayer'
s.version = '5.0.0'
s.license = 'MIT'
s.summary = 'A fancy Obj-C wrapper for Cocoa System Sound Services'
s.homepage = 'https://github.com/jessesquires/JSQSystemSoundPlayer'
s.documentation_url = 'https://jessesquires.github.io/JSQSystemSoundPlayer/'
s.social_media_url = 'https://twitter.com/jesse_squires'
s.author = 'Jesse Squires'
s.source = { :git => 'https://github.com/jessesquires/JSQSystemSoundPlayer.git', :tag => s.version }
s.source_files = 'Source/*.{h,m}'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.frameworks = 'AudioToolbox'
s.requires_arc = true
end