Skip to content

Instantly share code, notes, and snippets.

@Ewg777
Created July 2, 2015 09:36
Show Gist options
  • Save Ewg777/0c55c438f13440350a61 to your computer and use it in GitHub Desktop.
Save Ewg777/0c55c438f13440350a61 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "FFmpegBin"
s.version = "0.1.0"
s.summary = "The latest version of FFmpeg for iOS"
s.description = <<-DESC
DESC
s.license = 'MIT'
s.author = { "iOS" => "ewg--777@ya.ru" }
s.source = { :http => "https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2" }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'FFmpeg-iOS/include/**/*.h'
s.public_header_files = 'FFmpeg-iOS/include/**/*.h'
s.header_mappings_dir = 'FFmpeg-iOS/include'
s.vendored_libraries = 'FFmpeg-iOS/lib/*.a'
s.libraries = 'avcodec', 'avdevice', 'avfilter', 'avformat', 'avutil', 'swresample', 'swscale', 'iconv', 'z', 'bz2'
s.frameworks = 'AudioToolbox','CoreVideo','CoreImage','CoreMedia','QuartzCore','AVFoundation','CoreGraphics'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment