32 lines
994 B
Ruby
32 lines
994 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Simple-KML"
|
|
s.version = "0.1.0"
|
|
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"
|
|
|
|
# Specify the license type. CocoaPods detects automatically the license file if it is named
|
|
# `LICENSE*.*', however if the name is different, specify it.
|
|
s.license = 'Code Sorcery Workshop, LLC and Development Seed, Inc.'
|
|
|
|
s.author = { 'MapBox' => 'ios@mapbox.com' }
|
|
|
|
s.source = { :git => "https://github.com/mapbox/Simple-KML.git", :tag => "0.1.0" }
|
|
|
|
s.platform = :ios, '5.0'
|
|
|
|
s.source_files = 'source/*.{h,m}'
|
|
|
|
s.requires_arc = true
|
|
|
|
s.framework = 'UIKit'
|
|
|
|
# If you need to specify any other build settings, add them to the
|
|
# xcconfig hash.
|
|
#
|
|
# s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
|
|
|
|
s.dependency 'TouchXML'
|
|
s.dependency 'objective-zip'
|
|
|
|
end
|