You could adopt this package, there is no maintainer at this time !
![]() |
VOOZH | about |
| 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: | Exorcism |
| Last Packager: | Exorcism |
| Votes: | 9 |
| Popularity: | 0.000000 |
| First Submitted: | 2008-07-11 23:14 (UTC) |
| Last Updated: | 2025-09-17 08:00 (UTC) |
You could adopt this package, there is no maintainer at this time !
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
}
Are there any plans to upgrade this package to pgrouting 3.3?
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.
The PKGBUILD works fine if I change version to 2.5.2. Also the psotgis dependency should now be >= 2.0.
still out of date / failing to compile as of 2018-01-18 ... is this package orphaned?