forked from andreacremaschi/ShapeKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShapeKit.podspec
22 lines (16 loc) · 962 Bytes
/
ShapeKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ShapeKit"
s.version = "0.1"
s.summary = "ShapeKit"
s.description = "ShapeKit is a iOS/OSX library that offers an Objective-C interface to the powerful GEOS library. Through GEOS, ShapeKit includes all the OpenGIS Simple Features for SQL spatial predicate functions and spatial operators, as well as specific JTS enhanced topology functions. This fork is based on the original repository by Michael Weisman, with major customizations."
s.homepage = "https://github.com/andreacremaschi/ShapeKit"
s.license = { :type => "Mozilla Public License v1.1",
:file => "LICENSE" }
s.author = { "Andrea Cremaschi" => "[email protected]" }
s.source = { :git => "[email protected]:nguyenhunga5/ShapeKit.git", :tag => "0.1"}
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.source_files = "SpatialDBKit/*.{h,m}"
s.public_header_files = "SpatialDBKit/*.h"
end