Last active
December 23, 2015 19:09
-
-
Save PerishableDave/6681162 to your computer and use it in GitHub Desktop.
Podspec for Facebook-iOS-SDK type casting fix branch.
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 = 'Facebook-iOS-SDK' | |
s.version = '3.8.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/PerishableDave/facebook-ios-sdk.git'} | |
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