Created
January 21, 2013 10:44
-
-
Save jjaffeux/4585203 to your computer and use it in GitHub Desktop.
example podspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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