Created
November 21, 2013 22:58
-
-
Save yury/7591378 to your computer and use it in GitHub Desktop.
This file contains 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 = 'Facebook-iOS-SDK' | |
s.version = '3.10.0' | |
s.platform = :ios | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'The iOS SDK provides Facebook Platform support for iOS apps.' | |
s.description = 'The Facebook SDK for iOS enables you to access the Facebook Platform APIs including the Graph API, FQL, and Dialogs.' | |
s.homepage = 'http://developers.facebook.com/docs/reference/iossdk' | |
s.author = 'Facebook' | |
s.source = { :git => 'https://github.com/facebook/facebook-ios-sdk.git', :tag => 'sdk-version-3.10.0' } | |
s.source_files = 'src/*.{h,m}', 'src/Base64/*.{h,m}', 'src/Cryptography/*.{h,m}' | |
s.resources = 'src/FacebookSDKResources.bundle', 'src/FBUserSettingsViewResources.bundle' | |
s.header_dir = 'FacebookSDK' | |
s.weak_frameworks = 'Accounts', 'AdSupport', 'Social', 'Security' | |
s.framework = 'CoreLocation' | |
s.prepare_command = "find src -name \\*.png | grep -v @ | grep -v -- - | sed -e 's|\\(.*\\)/\\([a-zA-Z0-9]*\\).png|python scripts/image_to_code.py -i \\1/\\2.png -c \\2 -o src|' | sh" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment