mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-26 22:06:35 +01:00
gis/gdal: Add python3 support.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
ac29f11f31
commit
188a6db96c
2 changed files with 9 additions and 1 deletions
|
@ -11,7 +11,7 @@ provides a similar capability for simple features vector data.
|
|||
The following optional requirements are detected automatically:
|
||||
|
||||
cfitsio, freexl, hdf, hdf5, libkml, libwebp, netcdf,
|
||||
postgresql, xerces-c
|
||||
postgresql, python3, xerces-c
|
||||
|
||||
To enable OpenCL GPU-accelerated performance, specify the option
|
||||
OPENCL=yes (requires opencl-headers to build, and either nvidia-driver
|
||||
|
|
|
@ -143,6 +143,14 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
cd swig/python
|
||||
rm -rf build
|
||||
python3 setup.py build
|
||||
python3 setup.py install --root=$PKG --prefix=/usr
|
||||
cd - >/dev/null
|
||||
fi
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
|
|
Loading…
Reference in a new issue