forked from nst/ShapefileReader
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathShapefile.podspec
More file actions
31 lines (21 loc) · 1.04 KB
/
Shapefile.podspec
File metadata and controls
31 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "ShapefileReader"
s.version = "1.0.0"
s.summary = "Reads data from files in Shapefile format."
s.description = <<-DESC
ShapefileReader is the only object you instantiate.
Internally, it builds the three following objects, depending on the available auxiliary files:
- SHPReader to read the shapes, ie the list of points;
- DBFReader to read the data records associated with the shapes;
- SHXReader to read the indices of the shapes, thus allowing direct access;
- PRJReader to read the coordinate system and projection information.
DESC
s.homepage = "https://github.com/DnV1eX/ShapefileReader"
s.license = "MIT"
s.authors = { "Nicolas Seriot" => "nicolas.seriot@swissquote.ch", "Alexey Demin" => "dnv1ex@yahoo.com" }
s.swift_version = "5.0"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.source = { :git => "https://github.com/DnV1eX/ShapefileReader.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
end