File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ apt-get -y install \
29
29
libgdal-dev \
30
30
gdal-bin \
31
31
# python-gdal \
32
+ autoconf \
33
+ autoconf-archive \
34
+ automake \
32
35
libarmadillo-dev \
33
36
libfltk1.3-dev \
34
37
libgsl0-dev \
@@ -115,12 +118,15 @@ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local .. \
115
118
&& make clean && \
116
119
#
117
120
# Build SPLITS from source
118
- mkdir -p $INSTALL_DIR/splits && \
119
- cd $INSTALL_DIR/splits && \
120
- wget http://sebastian-mader.net/wp-content/uploads/2017/11/splits-1.9.tar.gz && \
121
- tar -xzf splits-1.9.tar.gz && \
122
- cd $INSTALL_DIR/splits/splits-1.9 && \
123
- ./configure CPPFLAGS="-I /usr/include/gdal" CXXFLAGS=-fpermissive \
121
+ cd $INSTALL_DIR && \
122
+ git clone https://bitbucket.org/smader/splits.git \
123
+ && cd splits && \
124
+ libtoolize --force \
125
+ && aclocal \
126
+ && autoheader \
127
+ && automake --force-missing --add-missing \
128
+ && autoconf \
129
+ && ./configure --disable-gui CPPFLAGS=-I/usr/include/gdal CXXFLAGS=-fpermissive \
124
130
&& make \
125
131
&& make install \
126
132
&& make clean && \
You can’t perform that action at this time.
0 commit comments