Skip to content

Commit e317d2c

Browse files
authored
Merge pull request #368 from pblottiere/explicit_lazperf_version
Explicitly set LazPerf version to v1.5 to add support in the Docker i…
2 parents 43d4bce + f9e270b commit e317d2c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ MAINTAINER Paul Blottiere <[email protected]>
33

44
ENV POSTGRES_VERSION 14
55
ENV POSTGIS_VERSION 3
6+
ENV LAZPERF_VERSION 1.5.0
67

78
RUN apt-get update \
89
&& apt-get install -y --no-install-recommends \
@@ -22,9 +23,10 @@ RUN apt-get update \
2223
postgresql-server-dev-all \
2324
libxml2-dev \
2425
&& rm -rf /var/lib/apt/lists/* \
25-
&& git clone https://github.com/verma/laz-perf.git \
26+
&& git clone https://github.com/hobuinc/laz-perf.git \
2627
&& cd laz-perf \
27-
&& cmake . \
28+
&& git checkout ${LAZPERF_VERSION} \
29+
&& cmake -DWITH_TESTS=FALSE . \
2830
&& make \
2931
&& make install \
3032
&& cd .. \

tools/build_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
if [[ -f config.mk ]]; then
5+
if [ -f config.mk ]; then
66
make clean maintainer-clean
77
fi
88

tools/install_lazperf.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
set -ex
3-
git clone https://github.com/verma/laz-perf.git
4-
cd laz-perf; cmake .; make; sudo make install
3+
git clone https://github.com/hobuinc/laz-perf.git
4+
cd laz-perf; git checkout 1.5.0; cmake -DWITH_TESTS=FALSE .; make; sudo make install

0 commit comments

Comments
 (0)