wok diff osm2pgrouting/receipt @ rev 25462
ufraw: include exiv2/error.hpp in ufraw_exiv2.cc
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Sep 28 10:52:41 2022 +0000 (2022-09-28) |
parents | 5ea0ce1cecc0 |
children | 7364ffdaaa60 |
line diff
1.1 --- a/osm2pgrouting/receipt Tue Jun 08 08:46:05 2021 +0000 1.2 +++ b/osm2pgrouting/receipt Wed Sep 28 10:52:41 2022 +0000 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 }