Skip to content

Commit

Permalink
Remove unavailable old proj4 package (#64)
Browse files Browse the repository at this point in the history
- remove unavailable old proj4 package since we download and compile PROJ-5.2
- update latest tarball name
  • Loading branch information
neteler committed Jul 29, 2019
1 parent bfdb74d commit 8a998fa
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docker/Dockerfile_alpine
Expand Up @@ -76,7 +76,6 @@ ENV PACKAGES="\
py3-pillow \
py3-six \
postgresql \
proj4 \
sqlite \
sqlite-libs \
tiff \
Expand All @@ -102,7 +101,6 @@ ENV PACKAGES="\
openjpeg-dev \
openblas-dev \
postgresql-dev \
proj4-dev \
sqlite-dev \
tar \
tiff-dev \
Expand Down Expand Up @@ -146,7 +144,7 @@ RUN echo "Install main packages";\
#
# install the latest projection library for GRASS GIS
#
echo "Install PROJ4";\
echo "Install PROJ-$PROJ_VERSION";\
echo " => Dowload proj-$PROJ_VERSION";\
wget http://download.osgeo.org/proj/proj-$PROJ_VERSION.tar.gz && \
tar xzvf proj-$PROJ_VERSION.tar.gz && \
Expand All @@ -168,11 +166,11 @@ RUN echo "Install main packages";\
#
echo "Install GRASS GIS";\
echo " => Dowload grass-$GRASS_VERSION";\
wget https://grass.osgeo.org/grass`echo $GRASS_VERSION | tr -d .`/source/snapshot/grass-$GRASS_VERSION.svn_src_snapshot_latest.tar.gz && \
wget https://grass.osgeo.org/grass`echo $GRASS_VERSION | tr -d .`/source/snapshot/grass-$GRASS_VERSION.git_src_snapshot_latest.tar.gz && \
# unpack source code package and remove tarball archive:
mkdir /src/grass_build && \
tar xfz grass-$GRASS_VERSION.svn_src_snapshot_latest.tar.gz --strip=1 -C /src/grass_build && \
rm -f grass-$GRASS_VERSION.svn_src_snapshot_latest.tar.gz; \
tar xfz grass-$GRASS_VERSION.git_src_snapshot_latest.tar.gz --strip=1 -C /src/grass_build && \
rm -f grass-$GRASS_VERSION.git_src_snapshot_latest.tar.gz; \
#
# Configure compile and install GRASS GIS
#
Expand Down

0 comments on commit 8a998fa

Please sign in to comment.