Skip to content

Instantly share code, notes, and snippets.

@dehy
Created September 18, 2013 07:41
Show Gist options
  • Select an option

  • Save dehy/6605838 to your computer and use it in GitHub Desktop.

Select an option

Save dehy/6605838 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'OpenTokSDK'
s.version = '1.4.3'
s.author = 'TokBox'
s.summary = 'The OpenTok iOS SDK lets you use OpenTok video sessions in apps you build for iPad, iPhone, and iPod touch devices.'
s.homepage = 'https://github.com/opentok/opentok-ios-sdk/'
s.license = { :type => 'Apache', :file => 'LICENSE.txt' }
s.source = { :git => 'https://github.com/opentok/opentok-ios-sdk.git',
:tag => "#{s.version}" }
s.platform = :ios, '5.0'
s.source_files = 'Opentok.framework/Versions/A/Headers/*.h'
s.resources = 'Opentok.framework/Versions/A/Resources/opentok.bundle'
s.frameworks = 'Opentok',
'UIKit', 'CoreMedia', 'CoreVideo', 'CoreAudio', 'CoreTelephony', 'CoreGraphics',
'CFNetwork', 'AVFoundation', 'SystemConfiguration', 'Security',
'QuartzCore', 'AudioToolbox', 'OpenGLES'
s.libraries = 'stdc++', 'z'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/OpenTokSDK/"' }
s.preserve_paths = 'Opentok.framework'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment