Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unavailable old proj4 package #64

Merged
merged 1 commit into from
Jul 29, 2019
Merged
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
10 changes: 4 additions & 6 deletions docker/Dockerfile_alpine
Original file line number Diff line number Diff line change
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