-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVLCMediaLibraryKit.podspec
More file actions
40 lines (28 loc) · 1.25 KB
/
VLCMediaLibraryKit.podspec
File metadata and controls
40 lines (28 loc) · 1.25 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
35
36
37
38
39
40
Pod::Spec.new do |s|
s.name = "VLCMediaLibraryKit"
s.version = '0.7.2'
s.summary = "A MediaLibrary framework in Objective-C for iOS and OS X"
s.description = <<-DESC
A MediaLibrary framework in C++ wrapped in Objective-C for iOS
DESC
s.homepage = "https://code.videolan.org/videolan/VLCMediaLibraryKit"
s.license = { :type => 'LGPLv2.1', :file => 'COPYING' }
s.authors = { "Soomin Lee" => "bubu@mikan.io", "Felix Paul Kühne" => "fkuehne@videolan.org", "Carola Nitz" => "caro@videolan.org" }
s.social_media_url = "http://twitter.com/videolan"
s.ios.deployment_target = '9.0'
s.source = {
:http => 'https://download.videolan.org/pub/cocoapods/prod/VLCMediaLibraryKit-0.7.2-d14cfec-244c21b1.zip',
}
s.prefix_header_file = "VLCMediaLibraryKit_Prefix.pch"
s.ios.vendored_framework = 'VLCMediaLibraryKit.framework'
s.source_files = 'VLCMediaLibraryKit.framework/Headers/*.h'
s.public_header_files = 'VLCMediaLibraryKit.framework/Headers/*.h'
s.frameworks = "Foundation"
s.requires_arc = true
s.static_framework = true
s.ios.dependency "MobileVLCKit"
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end