Created
May 8, 2014 03:35
-
-
Save saiten/49fa3413d41b73341cf3 to your computer and use it in GitHub Desktop.
GData.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 = 'GData' | |
s.version = '1.9.1' | |
s.license = { :type => 'Apache License, Version 2.0', :file => 'COPYING.txt' } | |
s.summary = "The Google data APIs provide a simple protocol for reading and "\ | |
"writing data on the web. Many Google services provide a Google data API." | |
s.homepage = 'https://code.google.com/p/gdata-objectivec-client' | |
s.author = { 'The Google Data APIs team' => 'https://code.google.com/p/gdata-objectivec-client' } | |
s.source = { :svn => 'http://gdata-objectivec-client.googlecode.com/svn', :tag => 'gdata-objectivec-client-1.9.1' } | |
s.subspec 'XMLNode' do |gdxml| | |
gdxml.source_files = 'Source/XMLSupport/*.{h,m}' | |
gdxml.libraries = 'xml2' | |
gdxml.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' } | |
end | |
s.requires_arc = false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment