From 8dd975295da79cef27f92e39f1ad01bef8906b77 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Fri, 14 Jun 2024 17:30:04 +0200 Subject: [PATCH 1/3] try to make documentation easier to follow Attempt to make documentation easier to follow. --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ead9f7e..975f41f1 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,12 @@ pyosmium has the following dependencies: ### Compiling from Source -Get the latest versions of libosmium, protozero and pybind11. It is -recommended that you put them in a subdirectory `contrib`. You can also -set custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and +Get the latest versions of libosmium, protozero and pybind11 source code. It is +recommended that you put them in a subdirectory `contrib`. + +You can do this by cloning their repositories into that location. + +You can also set custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and `PYBIND11_PREFIX` respectively. To use a custom boost installation, set `BOOST_PREFIX`. From b0a94c3f858fafbdb96d442f29cf389ef9247282 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Sat, 15 Jun 2024 19:16:18 +0200 Subject: [PATCH 2/3] give specific commands --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 975f41f1..8b396f3d 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,16 @@ recommended that you put them in a subdirectory `contrib`. You can do this by cloning their repositories into that location. +Following commands should achieve this: + +``` +mkdir contrib +cd contrib +git clone https://github.com/osmcode/libosmium.git +git clone https://github.com/mapbox/protozero.git +git clone https://github.com/pybind/pybind +``` + You can also set custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and `PYBIND11_PREFIX` respectively. From afbe3fb0ddf6c64031e13da23c3285c4a936d903 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Sat, 15 Jun 2024 19:18:25 +0200 Subject: [PATCH 3/3] fix .git missing somehow --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b396f3d..fb85f6f4 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ mkdir contrib cd contrib git clone https://github.com/osmcode/libosmium.git git clone https://github.com/mapbox/protozero.git -git clone https://github.com/pybind/pybind +git clone https://github.com/pybind/pybind11.git ``` You can also set custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and