MobileVLCKit.podspec 1.1 KB

1234567891011121314151617181920212223242526
  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://code.videolan.org/videolan/VLCKit'
  6. s.license = {
  7. :type => 'LGPL v2.1', :file => 'MobileVLCKit-binary/COPYING.txt'
  8. }
  9. s.documentation_url = 'https://wiki.videolan.org/VLCKit/'
  10. s.platform = :ios
  11. s.authors = 'Pierre d\'Herbemont', { 'Felix Paul Kühne' => 'fkuehne@videolan.org' }
  12. s.source = {
  13. :http => 'http://download.videolan.org/pub/cocoapods/MobileVLCKit-2.2.2.zip'
  14. }
  15. s.ios.vendored_framework = 'MobileVLCKit-binary/MobileVLCKit.framework'
  16. s.public_header_files = 'MobileVLCKit-binary/MobileVLCKit.framework/Headers/*.h'
  17. s.ios.deployment_target = '7.0'
  18. s.frameworks = 'QuartzCore', 'CoreText', 'AVFoundation', 'Security', 'CFNetwork', 'AudioToolbox', 'OpenGLES', 'CoreGraphics', 'VideoToolbox', 'CoreMedia'
  19. s.libraries = 'c++', 'xml2', 'z', 'bz2', 'iconv'
  20. s.requires_arc = false
  21. s.xcconfig = {
  22. 'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
  23. 'CLANG_CXX_LIBRARY' => 'libc++'
  24. }
  25. end