lhach92

Create FFmpeg4ijkplayer-ios-bin.podspec

  1 +Pod::Spec.new do |s|
  2 + s.name = "FFmpeg4ijkplayer-ios-bin"
  3 +
  4 + # <ijkplayer-tag> - rev.<revision> - <FFmpeg hash>
  5 + s.version = "0.3.1-build-20150916"
  6 + s.summary = "FFmpeg n2.7 build for ijkplayer on iOS platform."
  7 + s.homepage = "https://github.com/Bilibili/FFmpeg4ijkplayer-ios-bin"
  8 +
  9 + # license file extension must be txt
  10 + s.license = { :type => 'LGPLv2.1+', :file => 'COPYING.LGPLv2.1.txt' }
  11 + s.author = { "Zhang Rui" => "bbcallen@gmail.com" }
  12 +
  13 + s.platform = :ios, '6.0'
  14 +
  15 + s.source = { :git => "https://github.com/boxfish-project/FFmpeg4ijkplayer-ios-bin.git", :tag => s.version }
  16 +
  17 + s.requires_arc = false
  18 + s.libraries = 'z', 'bz2'
  19 +
  20 + s.subspec 'ffmpeg' do |ss|
  21 + ss.source_files = 'include/**/*.h'
  22 + ss.public_header_files = 'include/**/*.h'
  23 + ss.header_mappings_dir = 'include'
  24 + ss.vendored_libraries = 'lib/**/*.a'
  25 + end
  26 +
  27 +end