forked from bliksemlabs/rrrr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrrr.podspec
52 lines (42 loc) · 1.75 KB
/
rrrr.podspec
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
s.name = "rrrr"
s.version = "0.2.3"
s.summary = "RRRR rapid real-time routing"
s.description = <<-DESC
RRRR (usually pronounced R4) is a C-language implementation of the RAPTOR public transit routing algorithm.
It is the core routing component of the Bliksem journey planner and passenger information system.
DESC
s.homepage = "https://github.com/bliksemlabs/rrrr"
s.license = { :type => "BSD 2-clause", :file => "LICENSE" }
s.authors = { "abyrd" => "[email protected]",
"skinkie" => "[email protected]",
"skywave" => "",
"JordenVerwer" => "" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/oooits72/rrrr.git", :tag => "0.2.3" }
s.source_files = "router.{c,h}",
"tdata.{c,h}",
"tdata_validation.{c,h}",
"bitset.{c,h}",
"router_request.{c,h}",
"router_result.{c,h}",
"util.{c,h}",
"tdata_io_v3_mmap.c",
"tdata_io_v3.h",
"radixtree.{c,h}",
"geometry.{c,h}",
"hashgrid.{c,h}",
"router_dump.{c,h}",
"rrrr_types.h",
"config.h",
"json.{c,h}",
"plan_render_text.{c,h}",
"plan_render_otp.{c,h}",
"tdata_io_v4.h",
"tdata_io_v4_dynamic.c",
"tdata_io_v4_mmap.c",
"api.{c,h}",
"polyline.{c,h}",
"set.{c,h}"
s.requires_arc = false
end