wok-current rev 22821
updated geos and geos-dev (3.5.0 -> 3.8.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 06 11:31:14 2020 +0100 (2020-02-06) |
parents | d231f44f9f0a |
children | d1f85e376665 |
files | geos-dev/receipt geos/receipt |
line diff
1.1 --- a/geos-dev/receipt Wed Feb 05 15:08:31 2020 +0100 1.2 +++ b/geos-dev/receipt Thu Feb 06 11:31:14 2020 +0100 1.3 @@ -1,24 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="geos-dev" 1.7 -VERSION="3.5.0" 1.8 +VERSION="3.8.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Geos dev files." 1.11 +SHORT_DESC="Geos development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="https://trac.osgeo.org/geos/" 1.15 -WANTED="geos" 1.16 1.17 DEPENDS="geos" 1.18 -BUILD_DEPENDS="" 1.19 - 1.20 +WANTED="geos" 1.21 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 - mkdir -p $fs/usr/bin $fs/usr/lib 1.26 - 1.27 - cp -a $install/usr/bin $fs/usr 1.28 - cp -a $install/usr/include $fs/usr 1.29 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.30 + mkdir -p $fs/usr/bin 1.31 + mkdir -p $fs/usr/lib 1.32 + 1.33 + cp -a $install/usr/bin $fs/usr 1.34 + cp -a $install/usr/include $fs/usr 1.35 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.36 }
2.1 --- a/geos/receipt Wed Feb 05 15:08:31 2020 +0100 2.2 +++ b/geos/receipt Thu Feb 06 11:31:14 2020 +0100 2.3 @@ -1,27 +1,33 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="geos" 2.7 -VERSION="3.5.0" 2.8 +VERSION="3.8.0" 2.9 CATEGORY="misc" 2.10 SHORT_DESC="Geometry Engine, Open Source." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 WEB_SITE="https://trac.osgeo.org/geos/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 WGET_URL="http://download.osgeo.org/geos/$TARBALL" 2.17 2.18 -DEPENDS="gcc-lib-base" 2.19 -BUILD_DEPENDS="" 2.20 +DEPENDS="gcc83-lib-base" 2.21 +BUILD_DEPENDS="gcc83" 2.22 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 - ./configure $CONFIGURE_ARGS && make && make install 2.27 + ./configure \ 2.28 + CC=gcc-83 \ 2.29 + CXX=g++-83 \ 2.30 + $CONFIGURE_ARGS && 2.31 + make && 2.32 + make install 2.33 } 2.34 2.35 # Rules to gen a SliTaz package suitable for Tazpkg. 2.36 genpkg_rules() 2.37 { 2.38 mkdir -p $fs/usr/lib 2.39 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.40 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.41 }