-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKSYMediaEditorKit.podspec
50 lines (39 loc) · 1.56 KB
/
KSYMediaEditorKit.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Be sure to run `pod spec lint KSYMediaEditorKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "KSYMediaEditorKit"
s.version = '2.3.2'
s.summary = "ksyun iOS mediaeditor sdk "
s.description = <<-DESC
* ksyun mediaeditor sdk
DESC
s.homepage = "http://v.ksyun.com/doc.html"
s.license = {:type => 'Proprietary', :text => <<-LICENSE
Copyright 2015 kingsoft Ltd. All rights reserved.
LICENSE
}
s.author = { "KeChengWang" => "[email protected]" }
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/ksvc/KSYMediaEditorKit_iOS.git", :tag => "v#{s.version}" }
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC -all_load' }
s.ios.library = 'z', 'iconv', 'c++', 'bz2'
s.requires_arc = true
s.default_subspec = 'KSYMediaEditorKit'
s.subspec 'KSYMediaEditorKit' do |sub|
sub.dependency '%s/libKSYMediaEditor' % s.name
sub.dependency '%s/KSYGPUResource' % s.name
end
s.subspec 'libKSYMediaEditor' do |sub|
sub.source_files = ['prebuilt/include/**/*.h']
sub.vendored_library = 'prebuilt/libs/*.a'
sub.dependency 'GPUImage'
end
s.subspec 'KSYGPUResource' do |sub|
sub.resource = 'resource/KSYGPUResource.bundle'
end
end