Skip to content

Instantly share code, notes, and snippets.

@pilot34
Created October 3, 2016 14:32
Show Gist options
  • Save pilot34/37f1d1c56953e5d5dd5651843385dd97 to your computer and use it in GitHub Desktop.
Save pilot34/37f1d1c56953e5d5dd5651843385dd97 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'GPUImage2'
s.version = '0.1.0'
s.license = 'BSD'
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
s.homepage = 'https://github.com/BradLarson/GPUImage2'
s.author = { 'Brad Larson' => '[email protected]' }
s.source = { :git => 'https://github.com/BradLarson/GPUImage2.git', :branch => "master" }
s.source_files = 'framework/Source/**/*.{swift}'
s.resources = 'framework/Source/Operations/Shaders/*.{fsh}'
s.requires_arc = true
s.xcconfig = { 'CLANG_MODULES_AUTOLINK' => 'YES',
'OTHER_SWIFT_FLAGS' => "$(inherited) -DGLES"}
s.ios.deployment_target = '8.0'
s.ios.exclude_files = 'framework/Source/Mac', 'framework/Source/Linux', 'framework/Source/Operations/Shaders/ConvertedShaders_GL.swift'
s.frameworks = ['OpenGLES', 'CoreMedia', 'QuartzCore', 'AVFoundation']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment