wok-next view pgrouting/receipt @ rev 20915

libboost -> boost
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Aug 21 00:41:54 2018 +0300 (2018-08-21)
parents a3c581bf52b8
children d5aab818505e
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="https://pgrouting.org/"
11 WGET_URL="https://codeload.github.com/pgRouting/pgrouting/tar.gz/v$VERSION"
13 DEPENDS="gcc-lib-base cgal gmp boost-thread boost-system"
14 BUILD_DEPENDS="wget cmake postgresql-dev boost-dev cgal-dev gmp-dev \
15 mpfr-dev boost-graph boost-thread"
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 }