-
Notifications
You must be signed in to change notification settings - Fork 127
/
BBMetalImage.podspec
41 lines (29 loc) · 1.37 KB
/
BBMetalImage.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
Pod::Spec.new do |s|
s.name = 'BBMetalImage'
s.version = '1.2.0'
s.summary = 'A Swift library for GPU-accelerated image/video processing based on Metal.'
s.description = <<-DESC
80+ built-in filters.
Filter chain supported.
Customized filter.
Camera capturing video and audio.
Depth camera supported.
Multiple camera supported.
Video source processing video file.
Image source providing image texture.
UI source recording view animation.
Metal view displaying Metal texture.
Video writer writting video.
High performance.
DESC
s.homepage = 'https://github.com/Silence-GitHub/BBMetalImage'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kaibo Lu' => '[email protected]' }
s.platform = :ios, '10.0'
s.swift_version = '5.0'
s.source = { :git => 'https://github.com/Silence-GitHub/BBMetalImage.git', :tag => s.version }
s.requires_arc = true
s.source_files = 'BBMetalImage/BBMetalImage/*.{h,m,swift,metal}'
s.exclude_files = 'BBMetalImage/BBMetalImage/MultipleVideoSource.swift'
s.private_header_files = 'BBMetalImage/BBMetalImage/BBMetalShaderTypes.h'
end