MobileVLCKit.podspec 1.0 KB

123456789101112131415161718192021222324
  1. Pod::Spec.new do |s|
  2. s.name = 'MobileVLCKit'
  3. s.version = '3.0.0'
  4. s.summary = "MobileVLCKit is an Objective-C wrapper for libvlc's external interface on iOS."
  5. s.homepage = 'https://wiki.videolan.org/VLCKit/'
  6. s.license = {
  7. :type => 'LGPLv2.1', :file => 'MobileVLCKit-binary/COPYING.txt'
  8. }
  9. s.authors = 'Pierre d\'Herbemont', { 'Felix Paul Kühne' => 'fkuehne@videolan.org' }
  10. s.source = {
  11. :http => 'http://download.videolan.org/pub/cocoapods/MobileVLCKit-2.2.2.zip'
  12. }
  13. s.ios.vendored_framework = 'MobileVLCKit-binary/MobileVLCKit.framework'
  14. s.public_header_files = 'MobileVLCKit-binary/MobileVLCKit.framework/Headers/*.h'
  15. s.ios.deployment_target = '7.0.0'
  16. s.frameworks = 'QuartzCore', 'CoreText', 'AVFoundation', 'Security', 'CFNetwork', 'AudioToolbox', 'OpenGLES', 'CoreGraphics', 'VideoToolbox', 'CoreMedia'
  17. s.libraries = 'libc++', 'xml2', 'z', 'bz2', 'iconv'
  18. s.requires_arc = false
  19. s.xcconfig = {
  20. 'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
  21. 'CLANG_CXX_LIBRARY' => 'libc++'
  22. }
  23. end