wok-current diff geos/receipt @ rev 25044
*/stuff/bootloader.S: fix VCPI case
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jun 02 15:48:36 2022 +0000 (2022-06-02) |
parents | af8d823a3077 |
children |
line diff
1.1 --- a/geos/receipt Mon Feb 14 14:14:23 2022 +0000 1.2 +++ b/geos/receipt Thu Jun 02 15:48:36 2022 +0000 1.3 @@ -1,18 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="geos" 1.7 -VERSION="3.8.0" 1.8 +VERSION="3.10.2" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="Geometry Engine, Open Source." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 -WEB_SITE="https://trac.osgeo.org/geos/" 1.14 +WEB_SITE="https://libgeos.org/" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 WGET_URL="http://download.osgeo.org/geos/$TARBALL" 1.18 1.19 DEPENDS="gcc83-lib-base" 1.20 -BUILD_DEPENDS="gcc83" 1.21 +BUILD_DEPENDS="cmake gcc83" 1.22 1.23 # What is the latest version available today? 1.24 current_version() 1.25 @@ -24,10 +24,14 @@ 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - ./configure \ 1.30 - CC=gcc-83 \ 1.31 - CXX=g++-83 \ 1.32 - $CONFIGURE_ARGS && 1.33 + export CC=gcc-83 1.34 + export CXX=g++-83 1.35 + 1.36 + mkdir _build && 1.37 + cd _build && 1.38 + cmake .. \ 1.39 + -D CMAKE_INSTALL_PREFIX=/usr \ 1.40 + -D CMAKE_BUILD_TYPE=Release && 1.41 make && 1.42 make install 1.43 } 1.44 @@ -35,6 +39,5 @@ 1.45 # Rules to gen a SliTaz package suitable for Tazpkg. 1.46 genpkg_rules() 1.47 { 1.48 - mkdir -p $fs/usr/lib 1.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.50 + cook_copy_files *.so* 1.51 }