forked from BradLarson/GPUImage
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGPUImage.podspec
More file actions
Latest commit
16 lines (16 loc) · 751 Bytes
/
Copy pathGPUImage.podspec
File metadata and controls
16 lines (16 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name='GPUImage'
s.version='0.1.1'
s.license='BSD'
s.platform=:ios,'5.0'
s.summary='An open source iOS framework for GPU-based image and video processing.'
s.homepage='https://github.com/BradLarson/GPUImage'
s.author={'Brad Larson'=>'contact@sunsetlakesoftware.com'}
s.source={:git=>'https://github.com/BradLarson/GPUImage.git',:tag=>"#{s.version}"}
s.source_files='framework/Source/**/*.{h,m}'
s.resources='framework/Resources/*.png'
s.osx.exclude_files='framework/Source/iOS/**/*.{h,m}'
s.ios.exclude_files='framework/Source/Mac/**/*.{h,m}'
s.frameworks=['OpenGLES','CoreVideo','CoreMedia','QuartzCore','AVFoundation']
s.requires_arc=true
end