Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Paul Blottiere <blottiere.paul@gmail.com>

ENV POSTGRES_VERSION 14
ENV POSTGIS_VERSION 3
ENV LAZPERF_VERSION 1.5.0

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand All @@ -22,9 +23,10 @@ RUN apt-get update \
postgresql-server-dev-all \
libxml2-dev \
&& rm -rf /var/lib/apt/lists/* \
&& git clone https://github.com/verma/laz-perf.git \
&& git clone https://github.com/hobuinc/laz-perf.git \
&& cd laz-perf \
&& cmake . \
&& git checkout ${LAZPERF_VERSION} \
&& cmake -DWITH_TESTS=FALSE . \
&& make \
&& make install \
&& cd .. \
Expand Down
2 changes: 1 addition & 1 deletion tools/build_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

if [[ -f config.mk ]]; then
if [ -f config.mk ]; then
make clean maintainer-clean
fi

Expand Down
4 changes: 2 additions & 2 deletions tools/install_lazperf.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
set -ex
git clone https://github.com/verma/laz-perf.git
cd laz-perf; cmake .; make; sudo make install
git clone https://github.com/hobuinc/laz-perf.git
cd laz-perf; git checkout 1.5.0; cmake -DWITH_TESTS=FALSE .; make; sudo make install