diff --git a/Simple-KML/0.1.0/Simple-KML.podspec b/Simple-KML/0.1.0/Simple-KML.podspec new file mode 100644 index 00000000..065bc0b1 --- /dev/null +++ b/Simple-KML/0.1.0/Simple-KML.podspec @@ -0,0 +1,31 @@ +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