wok view pgrouting/receipt @ rev 19889

Up: gimp (2.8.20)
author Alexander Medvedev <devl547@gmail.com>
date Tue Apr 04 19:53:27 2017 +0000 (2017-04-04)
parents 9689f1b75619
children 2bd6324d64bf
line source
1 # SliTaz package receipt.
3 PACKAGE="pgrouting"
4 VERSION="2.0.0"
5 CATEGORY="misc"
6 SHORT_DESC="provide geospatial routing for PostGIS / PostgreSQL."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pgrouting.org/"
11 WGET_URL="https://codeload.github.com/pgRouting/pgrouting/tar.gz/v$VERSION"
13 DEPENDS="gcc-lib-base cgal gmp libboost-thread libboost-system"
14 BUILD_DEPENDS="wget cmake postgresql-dev libboost-dev cgal-dev gmp-dev \
15 mpfr-dev libboost-graph-dev libboost-thread-dev libboost-tr1-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build
21 cd build
22 cmake -DWITH_DD=ON ..
23 make
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/* $fs/usr
32 }