I have fixed and updated this package. But I am disowning it, since I myself don't use it.
It would benefit from a willing volunteer's maintainership, especially if that person uses and/or tests it with applications.
![]() |
VOOZH | about |
| Git Clone URL: | https://aur.archlinux.org/postgis-sfcgal.git (read-only, click to copy) |
|---|---|
| Package Base: | postgis-sfcgal |
| Description: | A spatial database extender for PostgreSQL, with SFCGAL support |
| Upstream URL: | https://postgis.net/ |
| Licenses: | GPL-3.0-or-later, LicenseRef-PostGIS |
| Conflicts: | postgis |
| Provides: | postgis |
| Submitter: | okanisis |
| Maintainer: | kikislater |
| Last Packager: | kikislater |
| Votes: | 6 |
| Popularity: | 0.000000 |
| First Submitted: | 2014-05-30 21:26 (UTC) |
| Last Updated: | 2026-05-20 14:09 (UTC) |
I have fixed and updated this package. But I am disowning it, since I myself don't use it.
It would benefit from a willing volunteer's maintainership, especially if that person uses and/or tests it with applications.
Hi, I was not able to build this package with postgis 2.3.1 version.
Using postgis 3.2.2 (last version), I was able to build the package if I added llvm and llvm13-libs as dependencies (without this, I had failure because of llvm-lto, libLLVM-13.so, libLLVM-14.so) with this PKGBUILD:
pkgname=postgis-sfcgal
_pkgname=${pkgname%-sfcgal}
pkgver=3.2.2
pkgrel=1
pkgdesc="Adds support for geographic objects to PostgreSQL and includes SFCGAL support for experimental 3D functions"
arch=('i686' 'x86_64')
url="http://postgis.net/"
license=('GPL')
depends=('postgresql' 'gdal' 'geos' 'json-c' 'sfcgal' 'libxml2' 'libxslt' 'llvm13-libs')
makedepends=('llvm')
provides=("$_pkgname=$pkgver")
conflicts=($_pkgname)
source=("https://download.osgeo.org/postgis/source/${_pkgname}-${pkgver}.tar.gz")
md5sums=('3fa8bfdc791f53147aab7e1fa8d2ae49')
build() {
cd ${_pkgname}-${pkgver}
./autogen.sh
./configure --prefix=/usr --with-raster --with-gdalconfig=/usr/bin/gdal-config --with-gui
make
}
package() {
cd ${_pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}