Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 8127cbc

Browse files
committed
added osmlr
1 parent 441610d commit 8127cbc

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

scripts/install_from_ppa.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ apt-get install -y \
99
libvalhalla0 \
1010
libvalhalla-dev \
1111
valhalla-bin
12+
13+
add-apt-repository ppa:valhalla-core/opentraffic
14+
apt-get update -y
15+
16+
apt-get install -y \
17+
osmlr

scripts/install_from_source.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,25 @@ cd -
5757
# clean up
5858
ldconfig
5959
rm -rf libvalhalla
60+
61+
#osmlr
62+
add-apt-repository ppa:valhalla-core/opentraffic
63+
apt-get update -y
64+
65+
# get the software installed
66+
git clone \
67+
--depth=1 \
68+
--recurse-submodules \
69+
--single-branch \
70+
--branch=master \
71+
https://github.com/opentraffic/osmlr.git osmlr
72+
73+
cd osmlr
74+
./autogen.sh
75+
./configure --enable-static
76+
make -j$(nproc)
77+
make install
78+
cd -
79+
80+
# clean up
81+
rm -rf osmlr

0 commit comments

Comments
 (0)