blob: eb7eea59e3ea604c6de0147eb51b551f48a0d11b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Brad Ackerman <brad at facefault dot org>
# Contributor: SaultDon <sault.don gmail>
# Contributor: Andre Klitzing <andre () incubo () de>
pkgname=pgrouting
pkgver=3.5.0
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=('b2d9b335851785e91bbe345b1c962de13b1d083e0577961a01b3f5e70ac002b670d28316b5f80e5a15ab5015107725998004cc2696e5da78f243107f9694e0d4')
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
}
|