Skip to content

Instantly share code, notes, and snippets.

@jjaffeux
Created January 21, 2013 10:44
Show Gist options
  • Save jjaffeux/4585203 to your computer and use it in GitHub Desktop.
Save jjaffeux/4585203 to your computer and use it in GitHub Desktop.
example podspec
Pod::Spec.new do |s|
s.name = "MoodstocksSDK"
s.version = "1.0.0"
s.summary = "MoodstocksSDK..."
s.description = "MoodstocksSDK...."
s.homepage = "www.moodstocks.com"
s.license = { :type => 'a voir', :file => 'LICENSE' }
s.author = { "Moodtoscks" => "Moodtoscks team" }
s.source = { :git => '[email protected]:jjaffeux/moodstocks-sdk-pod.git' }
s.preserve_paths = 'libmoodstocks-sdk.a'
s.source_files = 'moodstocks_sdk.h', 'Obj-C'
s.requires_arc = true
s.platform = :ios
s.frameworks = 'CoreGraphics', 'AVFoundation', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'ImageIO', 'Accelerate'
s.library = 'moodstocks-sdk'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/MoodstocksSDK"' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment