Add basic podspec
VLC-Dropbox-v1-SDK.podspec
0 → 100644
Pod::Spec.new do |s| | ||
s.name = "VLC-Dropbox-v1-SDK" | ||
s.version = "1.3.14v" | ||
s.summary = "The Dropbox v1 SDK for iOS and tvOS" | ||
s.description = <<-DESC | ||
A fork of the v1 Dropbox SDK to add basic playback support on tvOS. | ||
DESC | ||
s.homepage = "https://github.com/fkuehne/VLC-Dropbox-v1-SDK" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.authors = { "2010-2014 Dropbox (Evenflow, Inc.)", "Felix Paul Kühne" => "fkuehne@videolan.org" } | ||
s.ios.deployment_target = "7.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/fkuehne/VLC-Dropbox-v1-SDK.git", :tag => "#{s.version}" } | ||
s.prefix_header_file = "DropboxSDK_Prefix.pch" | ||
s.source_files = "Classes/**/*.{h,m}" | ||
s.exclude_files = "Classes/DBKeychain-OSX.m", "Classes/DBRestClient+OSX.m", "Classes/DBAuthHelperOSX.m" | ||
s.frameworks = "Foundation", "UIKit" | ||
s.requires_arc = true | ||
end |
Please register or sign in to comment