# HG changeset patch # User Hans-G?nter Theisgen # Date 1640755775 -3600 # Node ID 87964cbbcd165d7106bef3d6afcf870d99c518c0 # Parent e6fa7b2baedd7e48bf6a66d1760de79ffea88e71 updated osm2pgrouting (2.3.6 -> 2.3.8) diff -r e6fa7b2baedd -r 87964cbbcd16 osm2pgrouting/receipt --- a/osm2pgrouting/receipt Tue Dec 28 16:40:30 2021 +0000 +++ b/osm2pgrouting/receipt Wed Dec 29 06:29:35 2021 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="osm2pgrouting" -VERSION="2.3.6" +VERSION="2.3.8" CATEGORY="misc" SHORT_DESC="Import tool for OpenStreetMap data to pgRouting database." MAINTAINER="pascal.bellard@slitaz.org" @@ -11,9 +11,9 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" -DEPENDS="expat gcc83-lib-base libboost-program-options libpostgresqlclient" -BUILD_DEPENDS="cmake expat-dev gcc83 libpqxx libboost-program-options-dev \ - pgrouting postgis postgresql-dev" +DEPENDS="expat gcc49-lib-base libboost-program-options libpostgresqlclient" +BUILD_DEPENDS="cmake expat-dev gcc49 libboost-program-options-dev + libpqxx pgrouting postgis postgresql-dev" current_version() { @@ -24,10 +24,12 @@ # Rules to configure and make the package. compile_rules() { - export CXX=g++-83 + export CXX=g++-49 # is essential - cmake -DCMAKE_INSTALL_PREFIX=/usr -H. -Bbuild - cd build/ + mkdir _build + cd _build + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && make && make DESTDIR=$DESTDIR install }