Skip to content

Commit

Permalink
Destdir for tiledb.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Mar 3, 2020
1 parent 925e57d commit a67ced7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions scripts/docker/ubuntu/Dockerfile.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -213,17 +213,6 @@ RUN git clone --branch release/3.0 https://github.com/OSGeo/gdal.git \
&& make install DESTDIR=/ \
&& rm -rf /gdal

RUN git clone --branch ${TILEDB_VERSION} \
https://github.com/TileDB-Inc/TileDB.git \
&& cd TileDB \
&& mkdir build \
&& cd build \
&& cmake .. -G "Unix Makefiles" -DTILEDB_TBB=OFF -DTILEDB_TESTS=OFF \
&& make \
&& make install-tiledb \
&& cd / \
&& rm -rf TileDB

RUN curl -LOs http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-5.0.0-beta0.tar.gz && tar zxvf libspatialite-5.0.0-beta0.tar.gz && cd /libspatialite-5.0.0-beta0 \
&& CXXFLAGS="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" \
CFLAGS="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" \
Expand All @@ -238,3 +227,14 @@ RUN \
curl -LOs http://download.osgeo.org/proj/proj-datumgrid-world-1.0.zip && unzip -j -u -o proj-datumgrid-world-1.0.zip -d /usr/share/proj && rm proj-datumgrid-world-1.0.zip; \
curl -LOs http://download.osgeo.org/proj/proj-datumgrid-north-america-1.2.zip && unzip -j -u -o proj-datumgrid-north-america-1.2.zip -d /usr/share/proj && rm proj-datumgrid-north-america-1.2.zip;

RUN git clone --branch ${TILEDB_VERSION} \
https://github.com/TileDB-Inc/TileDB.git \
&& cd TileDB \
&& mkdir build \
&& cd build \
&& cmake .. -G "Unix Makefiles" -DTILEDB_TBB=OFF -DTILEDB_TESTS=OFF \
&& make \
&& make install-tiledb DESTDIR=/ \
&& cd / \
&& rm -rf TileDB

0 comments on commit a67ced7

Please sign in to comment.