Skip to content

Instantly share code, notes, and snippets.

@bugcloud
Last active December 23, 2015 07:49
Show Gist options
  • Select an option

  • Save bugcloud/6603654 to your computer and use it in GitHub Desktop.

Select an option

Save bugcloud/6603654 to your computer and use it in GitHub Desktop.
AVAnimator-pre.podspec
Pod::Spec.new do |s|
s.name = "AVAnimator"
s.version = "2.0.0"
s.summary = "VAnimator is an iOS library that makes it easy to implement non-trivial animated/video content in iOS."
s.homepage = "http://www.modejong.com/AVAnimator/index.html"
s.license = { :type => 'LGPL', :file => 'License.txt' }
s.author = { "Mo DeJong" => "[email protected]" }
s.source = { :git => "https://github.com/mdejong/AVAnimator.git" }
s.platform = :ios, '5.0'
s.source_files = 'Classes', 'Classes/**/*.{h,m,c}'
s.exclude_files = 'Classes/Tests'
s.frameworks = 'QuartzCore', 'AVFoundation', 'AudioToolbox', 'AssetsLibrary', 'CoreText', 'CoreVideo', 'CoreMedia', 'MediaPlayer', 'ImageIO', 'GLKit', 'OpenGLES'
s.library = 'z'
s.requires_arc = false
s.subspec 'ASM' do |asm|
asm.source_files = 'Classes/**/*.{s}'
asm.compiler_flags = '-no-integrated-as'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment