Package Details: pgrouting 3.5.0-1

Git Clone URL: https://aur.archlinux.org/pgrouting.git (read-only, click to copy)
Package Base: pgrouting
Description: Adds routing functionality to PostGIS/PostgreSQL
Upstream URL: http://pgrouting.org/
Keywords: GIS network topology
Licenses: GPL2
Submitter: Misery
Maintainer: xeyler
Last Packager: xeyler
Votes: 9
Popularity: 0.29
First Submitted: 2008-07-11 23:14 (UTC)
Last Updated: 2023-05-01 23:13 (UTC)

Latest Comments

1 2 Next › Last »

kikislater commented on 2023-02-11 15:31 (UTC)

You could adopt this package, there is no maintainer at this time !

phyks commented on 2023-02-11 14:55 (UTC) (edited on 2023-02-11 14:56 (UTC) by phyks)

Current AUR package / PKGBUILD seems to be broken with latest postgresql package from Arch repository (postgresql 15).

Here is a valid PKBUILD to built latest pgrouting release as of today (just had to update release and checksum) :

# Maintainer: Brad Ackerman <brad at facefault dot org>
# Contributor: SaultDon <sault.don gmail>
# Contributor: Andre Klitzing <andre () incubo () de>

pkgname=pgrouting
pkgver=3.4.2
pkgrel=1
pkgdesc="Adds routing functionality to PostGIS/PostgreSQL"
arch=('i686' 'x86_64')
url="http://pgrouting.org/"
license=('GPL2')
depends=('postgis>=2.0' 'gcc-libs' 'cgal')
makedepends=('cmake' 'boost' 'postgresql>=9.2')
source=("$pkgname-$pkgver.tar.gz"::https://github.com/pgRouting/$pkgname/archive/v$pkgver.tar.gz)
sha512sums=('1e50f3ba804dda3ae1b13594c535c1cc6cd960a7532168bc8b9b69cea5458172da4236ea34d74c6375347be5e478bba9c2ad164cad1da2e41c6a67435d22aafd')
prepare() {
   cd $pkgname-$pkgver

  [[ -d build ]] || mkdir build
}

build() {
  cd $pkgname-$pkgver/build

  cmake -L ../

  make
}

package() {
        cd $pkgname-$pkgver
        make -C build DESTDIR="$pkgdir/" install
}

categulario commented on 2022-02-24 01:10 (UTC)

Are there any plans to upgrade this package to pgrouting 3.3?

cherry314159 commented on 2021-01-22 12:39 (UTC)

pgrouting-3.1.0 does not build. I think it's because it requires c++14 to work with newer boost libraries. Changing the flag removes a lot of errors but not all of them.

backerman commented on 2018-02-25 20:20 (UTC)

The PKGBUILD works fine if I change version to 2.5.2. Also the psotgis dependency should now be >= 2.0.

znmeb commented on 2018-01-19 02:38 (UTC)

still out of date / failing to compile as of 2018-01-18 ... is this package orphaned?

maryanoo commented on 2017-11-11 07:45 (UTC) (edited on 2017-11-13 19:12 (UTC) by maryanoo)

Been trying to build this version (same error there is in version from github 2.5.1). And I got: [ 57%] Building C object src/alpha_shape/src/CMakeFiles/alpha_shape.dir/alpha.c.o /home/mariusz/pgrouting/src/pgrouting-2.3.1/src/alpha_shape/src/alpha.c: In function ‘alphashape’: /home/mariusz/pgrouting/src/pgrouting-2.3.1/src/alpha_shape/src/alpha.c:309:16: error: ‘DBL_MAX’ undeclared (first use in this function); did you mean ‘AF_MAX’? if (x == DBL_MAX && y == DBL_MAX) { ^~~~~~~ AF_MAX /home/mariusz/pgrouting/src/pgrouting-2.3.1/src/alpha_shape/src/alpha.c:309:16: note: each undeclared identifier is reported only once for each function it appears in make[2]: *** [src/alpha_shape/src/CMakeFiles/alpha_shape.dir/build.make:63: src/alpha_shape/src/CMakeFiles/alpha_shape.dir/alpha.c.o] Błąd 1 make[1]: *** [CMakeFiles/Makefile2:683: src/alpha_shape/src/CMakeFiles/alpha_shape.dir/all] Błąd 2 [edit] After upgrade to 2.5.2 seems to work.

okanisis commented on 2016-08-09 19:05 (UTC)

I've updated to current release 2.2.3 but there is an error in the build which I've reported to upstream and waiting for a fix or suggestions.

sjewo commented on 2013-05-03 12:32 (UTC)

Here is a fixed PKGBUILD for boost 1.53 https://github.com/sjewo/pgrouting-pkgbuild Detailed information about the problem: https://github.com/pgRouting/pgrouting/issues/77