I\'m trying to ship a static library via cocoapods. I was given the library without any build directions right now its a drop in to my iOS app. I don\'t need to build the librar
I think you need do like that demo
Pod::Spec.new do |s|
s.name = "RTMPLib Library"
s.version = "1.0.0"
s.summary = "RTMPLib Library"
s.homepage = "https://github.com/jumper/RTMPLib.git"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "jon morehouse" => "jon@jumperapp.com" }
s.source = { :git => "https://github.com/jumper/RTMPLib.git", :tag => "#{s.version}" }
s.platform = :ios, '7.0'
# arc components
s.requires_arc = false
# you static library`s .h file
s.source_files = 'lib/*.h'
s.vendored_libraries = 'lib/rtmplib.a'
end