wok rev 24168

updated osm2pgrouting (2.3.6 -> 2.3.8)
author Hans-G?nter Theisgen
date Wed Dec 29 06:29:35 2021 +0100 (2021-12-29)
parents e6fa7b2baedd
children 6323f548cca6
files osm2pgrouting/receipt
line diff
     1.1 --- a/osm2pgrouting/receipt	Tue Dec 28 16:40:30 2021 +0000
     1.2 +++ b/osm2pgrouting/receipt	Wed Dec 29 06:29:35 2021 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="osm2pgrouting"
     1.7 -VERSION="2.3.6"
     1.8 +VERSION="2.3.8"
     1.9  CATEGORY="misc"
    1.10  SHORT_DESC="Import tool for OpenStreetMap data to pgRouting database."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 @@ -11,9 +11,9 @@
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.15  
    1.16 -DEPENDS="expat gcc83-lib-base libboost-program-options libpostgresqlclient"
    1.17 -BUILD_DEPENDS="cmake expat-dev gcc83 libpqxx libboost-program-options-dev \
    1.18 -	pgrouting postgis postgresql-dev"
    1.19 +DEPENDS="expat gcc49-lib-base libboost-program-options libpostgresqlclient"
    1.20 +BUILD_DEPENDS="cmake expat-dev gcc49 libboost-program-options-dev
    1.21 +	libpqxx pgrouting postgis postgresql-dev"
    1.22  
    1.23  current_version()
    1.24  {
    1.25 @@ -24,10 +24,12 @@
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	export CXX=g++-83
    1.30 +	export CXX=g++-49	# is essential
    1.31  
    1.32 -	cmake -DCMAKE_INSTALL_PREFIX=/usr -H. -Bbuild
    1.33 -	cd build/
    1.34 +	mkdir	_build
    1.35 +	cd	_build
    1.36 +	cmake	..				\
    1.37 +		-D CMAKE_INSTALL_PREFIX=/usr &&
    1.38  	make &&
    1.39  	make DESTDIR=$DESTDIR install
    1.40  }