-
Notifications
You must be signed in to change notification settings - Fork 0
/
VLCMediaLibraryKit.podspec
35 lines (25 loc) · 1.12 KB
/
VLCMediaLibraryKit.podspec
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
Pod::Spec.new do |s|
s.name = "VLCMediaLibraryKit"
s.version = '0.10.1'
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" => "[email protected]", "Felix Paul Kühne" => "[email protected]", "Carola Nitz" => "[email protected]" }
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.10.1-d845e52-8c27cbbf.zip',
:sha256 => 'b309a0c6efdd4dd31fb982ee32b908ce00f70f0ea781cf96227ee6c583f987ba'
}
s.ios.vendored_framework = 'VLCMediaLibraryKit.xcframework'
s.frameworks = "Foundation"
s.requires_arc = true
s.ios.dependency "MobileVLCKit"
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end