forked from Harekaze/Harekaze-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMobileVLCKit-custom.podspec
28 lines (28 loc) · 3.24 KB
/
MobileVLCKit-custom.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
Pod::Spec.new do |s|
s.name = 'MobileVLCKit-custom'
s.version = '3.0.0-custom1'
s.summary = "(Customized) MobileVLCKit is an Objective-C wrapper for libvlc's external interface on iOS."
s.homepage = 'https://github.com/Harekaze/VLCKit'
s.license = {
:type => 'LGPL v2.1', :file => 'MobileVLCKit-binary/COPYING.txt'
}
s.documentation_url = 'https://github.com/Harekaze/VLCKit/wiki'
s.social_media_url = 'https://twitter.com/HarekazeApp'
s.platform = :ios
s.authors = { "Yuki MIZUNO" => "[email protected]", "Pierre d'Herbemont" => "[email protected]", "Felix Paul Kühne" => "[email protected]", "Carola Nitz" => "[email protected]", "Jean-Baptiste Kempf" => "[email protected]", "Rafaël Carré" => "[email protected]", "Faustino E. Osuna" => "[email protected]", "Rémi Denis-Courmont" => "[email protected]", "Faustino Osuna" => "[email protected]", "Tanguy Krotoff" => "[email protected]", "VideoLAN" => "[email protected]", "Derk-Jan Hartman" => "[email protected]", "Jean-Paul Saman" => "[email protected]", "Malte Tancred" => "[email protected]", "Mike Schrag" => "[email protected]", "Sebastien Zwickert" => "[email protected]", "Toralf Niebuhr" => "[email protected]", "Emmanuel de Roux" => "[email protected]", "Daniel Mierswa" => "[email protected]", "Rune Botten" => "[email protected]", "Konstantin Pavlov" => "[email protected]", "Pere Orga" => "[email protected]", "Philippe Coent" => "[email protected]", "Andrey Utkin" => "[email protected]", "Brendon Justin" => "[email protected]", "Sylver Bruneau" => "[email protected]", "Gleb Pinigin" => "[email protected]", "Kuang Rufan" => "[email protected]", "Paul Williamson" => "[email protected]", "David Fuhrmann" => "[email protected]", "Brion Vibber" => "[email protected]", "Martin Storsjö" => "[email protected]", "Winston Weinert" => "[email protected]", "Florent Pillet" => "[email protected]", "Paulo Vitor Magacho da Silva" => "[email protected]", "James Dumay" => "[email protected]", "Jörg Bleyel" => "[email protected]", "Aleksandr Matuzok" => "[email protected]", "Pierre SAGASPE" => "[email protected]", "Shenggang Hu" => "[email protected]", "Filipe Cabecinhas" => "[email protected]", "Jeremy Marchand" => "[email protected]", "Andre Silva" => "[email protected]", "Stefan Schmidt-Bilkenroth" => "[email protected]", "Benjamin Adolphi" => "[email protected]" }
s.source = {
:http => 'https://github.com/Harekaze/VLCKit/releases/download/3.0.0-custom1/MobileVLCKit-binary.zip',
:sha256 => '8f517da7146188024bd547593a7a35920b84988c2fe81381b00102845e934c4f',
}
s.ios.vendored_framework = 'MobileVLCKit-binary/MobileVLCKit.framework'
s.source_files = 'MobileVLCKit-binary/MobileVLCKit.framework/Headers/*.h'
s.public_header_files = 'MobileVLCKit-binary/MobileVLCKit.framework/Headers/*.h'
s.ios.deployment_target = '10.0'
s.frameworks = 'QuartzCore', 'CoreText', 'AVFoundation', 'Security', 'CFNetwork', 'AudioToolbox', 'OpenGLES', 'CoreGraphics', 'VideoToolbox', 'CoreMedia'
s.libraries = 'c++', 'xml2', 'z', 'bz2', 'iconv'
s.requires_arc = false
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end