Skip to content

Instantly share code, notes, and snippets.

@bartvandendriessche
Created December 10, 2012 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartvandendriessche/4249169 to your computer and use it in GitHub Desktop.
Save bartvandendriessche/4249169 to your computer and use it in GitHub Desktop.
Simple-KML podspec
Pod::Spec.new do |s|
s.name = "Simple-KML"
s.version = '0.0.1'
s.license = 'Copyright (c) 2010-2012, Code Sorcery Workshop, LLC and Development Seed, Inc. All rights reserved.'
'Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:'
'* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.'
'* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.'
'* Neither the names of Code Sorcery Workshop, LLC or Development Seed, Inc., nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.'
'THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.'
s.summary = 'Simple KML is a simple & lightweight parsing library for KML written in Objective-C for the iOS platform.'
s.homepage = 'https://github.com/mapbox/Simple-KML'
s.author = { 'Justin R. Miller' => '@incanus77'}
s.source = { :git => 'https://github.com/mapbox/Simple-KML.git', :commit => :head }
s.source_files = 'source'
s.description = 'Simple KML is a simple & lightweight parsing library for KML written in Objective-C for the iOS platform.'
'It is not meant for drawing, but rather for parsing. That is, it is up to the developer to turn the data structures returned by Simple KML into drawing code, be it for annotations in MapKit, constructs in an external mapping library, drawing paths on a UIImage, or otherwise.'
'Simple KML is basically an XML parser with smarts about KML. It presents a hierarchical view of KML data and can turn things like Simple KML color definitions into UIColor and text coordinates into CLLocation so that you don\'t have to.'
s.platform = :ios, '5.0'
s.frameworks = 'CoreLocation'
s.libraries = 'z'
s.requires_arc = true
s.dependency 'TouchXML', '0.1'
s.dependency 'Objective-Zip', :podspec => "https://raw.github.com/gist/4249363/1c6fb558678a9e31a9aa1057fdc1093655f9ff60/Objective-Zip.podspec"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment