Skip to content

Commit 024b442

Browse files
committed
Merge pull request BradLarson#1270 from rivera-ernesto/add_podspec
Add Podspec file to repository
2 parents 39a9b56 + f476a02 commit 024b442

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

GPUImage.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'GPUImage'
3+
s.version = '0.1.1'
4+
s.license = 'BSD'
5+
s.platform = :ios, '5.0'
6+
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
7+
s.homepage = 'https://github.com/BradLarson/GPUImage'
8+
s.author = { 'Brad Larson' => 'contact@sunsetlakesoftware.com' }
9+
s.source = { :git => 'https://github.com/BradLarson/GPUImage.git', :tag => "#{s.version}" }
10+
s.source_files = 'framework/Source/**/*.{h,m}'
11+
s.resources = 'framework/Resources/*.png'
12+
s.osx.exclude_files = 'framework/Source/iOS/**/*.{h,m}'
13+
s.ios.exclude_files = 'framework/Source/Mac/**/*.{h,m}'
14+
s.frameworks = ['OpenGLES', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation']
15+
s.requires_arc = true
16+
end

0 commit comments

Comments
 (0)