forked from mhuusko5/Podspecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpotify-iOS-SDK.podspec
More file actions
34 lines (26 loc) · 1.13 KB
/
Spotify-iOS-SDK.podspec
File metadata and controls
34 lines (26 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'Spotify-iOS-SDK'
s.module_name = 'Spotify'
s.summary = 'The new Spotify iOS SDK.'
s.version = '0.21.0'
s.source = { :http => 'https://github.com/spotify/ios-sdk/archive/beta-21.zip' }
s.license = { :type => 'Proprietary', :text => 'https://developer.spotify.com/developer-terms-of-use/' }
s.author = { 'Spotify' => 'https://developer.spotify.com/' }
s.homepage = 'https://developer.spotify.com/technologies/spotify-ios-sdk/'
s.platform = :ios
s.ios.deployment_target = '7.1'
s.requires_arc = true
s.framework = 'Foundation', 'AVFoundation'
s.pod_target_xcconfig = {
'OTHER_LDFLAGS' => '$(inherited) -ObjC'
}
s.user_target_xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(inherited) "$(PODS_ROOT)/Spotify-iOS-SDK"',
'OTHER_LDFLAGS' => '-l"Spotify"'
}
s.preserve_paths = 'ios-sdk-beta-21/Spotify.framework/Spotify'
s.prepare_command = 'touch Empty.m && cp ios-sdk-beta-21/Spotify.framework/Spotify libSpotify.a && cp ios-sdk-beta-21/Spotify.framework/Headers/* .'
s.source_files = 'Empty.m', '*.h'
s.public_header_files = '*.h'
s.vendored_libraries = 'libSpotify.a'
end