-
Notifications
You must be signed in to change notification settings - Fork 32
/
MobileVLCKit.podspec
23 lines (23 loc) · 1.02 KB
/
MobileVLCKit.podspec
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 = 'MobileVLCKit'
s.version = '3.0.0'
s.summary = "MobileVLCKit is an Objective-C wrapper for libvlc's external interface on iOS."
s.homepage = 'https://wiki.videolan.org/VLCKit/'
s.license = {
:type => 'LGPLv2.1', :file => 'MobileVLCKit-binary/COPYING.txt'
}
s.authors = 'Pierre d\'Herbemont', { 'Felix Paul Kühne' => '[email protected]' }
s.source = {
:http => 'http://download.videolan.org/pub/cocoapods/MobileVLCKit-2.2.2.zip'
}
s.ios.vendored_framework = 'MobileVLCKit-binary/MobileVLCKit.framework'
s.public_header_files = 'MobileVLCKit-binary/MobileVLCKit.framework/Headers/*.h'
s.ios.deployment_target = '7.0.0'
s.frameworks = 'QuartzCore', 'CoreText', 'AVFoundation', 'Security', 'CFNetwork', 'AudioToolbox', 'OpenGLES', 'CoreGraphics', 'VideoToolbox', 'CoreMedia'
s.libraries = 'libc++', 'xml2', 'z', 'bz2', 'iconv'
s.requires_arc = false
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end