Skip to content

Instantly share code, notes, and snippets.

@pkananen
Last active December 12, 2015 00:28
Show Gist options
  • Save pkananen/4683825 to your computer and use it in GitHub Desktop.
Save pkananen/4683825 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "ShapeKit"
s.version = "0.0.1"
s.summary = "ShapeKit is a geometry library for iOS that aims to bridge GEOS with Apple's MapKit."
s.homepage = "https://github.com/mweisman/ShapeKit"
s.license = { :type => 'LGPL' }
s.author = { "Michael Weisman" => "mweisman@gmail.com" }
s.source = { :git => "https://github.com/pkananen/ShapeKit.git", :tag => "0.0.1" }
s.platform = :ios, '4.0'
s.source_files = 'ShapeKit/*.{h,m}'
s.frameworks = 'CoreLocation', 'MapKit'
s.dependency 'proj4'
s.dependency 'geos'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment