Skip to content

Commit da424b3

Browse files
committed
adapt docs for release
1 parent e5a5f02 commit da424b3

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

docs/mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
site_name: Nominatim Manual
1+
site_name: Nominatim 4.4.0 Manual
22
theme:
33
name: material
44
features:

vagrant/Install-on-Ubuntu-20.sh

+4-11
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export DEBIAN_FRONTEND=noninteractive #DOCS:
2727
postgresql-contrib-12 postgresql-12-postgis-3-scripts \
2828
libicu-dev python3-dotenv \
2929
python3-psycopg2 python3-psutil python3-jinja2 python3-pip \
30-
python3-icu python3-datrie python3-yaml git
30+
python3-icu python3-datrie python3-yaml
3131

3232
# Some of the Python packages that come with Ubuntu 20.04 are too old, so
3333
# install the latest version from pip:
@@ -109,25 +109,18 @@ fi #DOCS:
109109
#
110110
if [ "x$1" == "xyes" ]; then #DOCS: :::sh
111111
cd $USERHOME
112-
git clone --recursive https://github.com/openstreetmap/Nominatim.git
113-
cd Nominatim
112+
wget https://nominatim.org/release/Nominatim-4.4.0.tar.bz2
113+
tar xf Nominatim-4.4.0.tar.bz2
114114
else #DOCS:
115115
cd $USERHOME/Nominatim #DOCS:
116116
fi #DOCS:
117117

118-
# When installing the latest source from github, you also need to
119-
# download the country grid:
120-
121-
if [ ! -f data/country_osm_grid.sql.gz ]; then #DOCS: :::sh
122-
wget -O data/country_osm_grid.sql.gz https://nominatim.org/data/country_grid.sql.gz
123-
fi #DOCS:
124-
125118
# The code must be built in a separate directory. Create this directory,
126119
# then configure and build Nominatim in there:
127120

128121
mkdir $USERHOME/build
129122
cd $USERHOME/build
130-
cmake $USERHOME/Nominatim
123+
cmake $USERHOME/Nominatim-4.4.0
131124
make
132125
sudo make install
133126

vagrant/Install-on-Ubuntu-22.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export DEBIAN_FRONTEND=noninteractive #DOCS:
2828
libicu-dev python3-dotenv \
2929
python3-psycopg2 python3-psutil python3-jinja2 \
3030
python3-sqlalchemy python3-asyncpg \
31-
python3-icu python3-datrie python3-yaml git
31+
python3-icu python3-datrie python3-yaml
3232

3333

3434
#
@@ -105,8 +105,8 @@ fi #DOCS:
105105
#
106106
if [ "x$1" == "xyes" ]; then #DOCS: :::sh
107107
cd $USERHOME
108-
git clone --recursive https://github.com/openstreetmap/Nominatim.git
109-
cd Nominatim
108+
wget https://nominatim.org/release/Nominatim-4.4.0.tar.bz2
109+
tar xf Nominatim-4.4.0.tar.bz2
110110
else #DOCS:
111111
cd $USERHOME/Nominatim #DOCS:
112112
fi #DOCS:
@@ -123,7 +123,7 @@ fi #DOCS:
123123

124124
mkdir $USERHOME/build
125125
cd $USERHOME/build
126-
cmake $USERHOME/Nominatim
126+
cmake $USERHOME/Nominatim-4.4.0
127127
make
128128
sudo make install
129129

0 commit comments

Comments
 (0)