diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2018-11-12 17:27:31 -0800 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-17 18:42:56 +0700 |
commit | 52a20c6c69047c7960e73c4670ecab0e90ce5b3d (patch) | |
tree | a41684c363b6dd3d913199e9d8f9caaeb93a6422 /gis/Geohash/Geohash.SlackBuild | |
parent | 4fd6efbb433d7f91815ad5f43273bc39f386212e (diff) |
gis/Geohash: Python 3 by default.
Diffstat (limited to 'gis/Geohash/Geohash.SlackBuild')
-rw-r--r-- | gis/Geohash/Geohash.SlackBuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gis/Geohash/Geohash.SlackBuild b/gis/Geohash/Geohash.SlackBuild index d89f1b7d4b92d..6100ab1625b3c 100644 --- a/gis/Geohash/Geohash.SlackBuild +++ b/gis/Geohash/Geohash.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for Geohash -# Copyright 2016 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> +# Copyright 2016-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -69,17 +69,16 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python setup.py install --root=$PKG -if $(python3 -c 'import sys' 2>/dev/null); then - sed -i "s/from geohash/from .geohash/" $PRGNAM/__init__.py - python3 setup.py install --root=$PKG -fi +python2 setup.py install --root=$PKG +python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE.txt README.rst $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + LICENSE.txt README.rst \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |