wok view postgis/receipt @ rev 17691

xrdp: update start scripts
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 22 19:05:31 2015 +0100 (2015-02-22)
parents 7896f0694ef6
children 2cb8ea33e031
line source
1 # SliTaz package receipt.
3 PACKAGE="postgis"
4 VERSION="2.0.2"
5 CATEGORY="misc"
6 SHORT_DESC="Support for geographic objects to PostgreSQL"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://postgis.refractions.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://postgis.refractions.net/download/$TARBALL"
13 DEPENDS="geos proj libpostgresqlclient libxml2 libgdal"
14 BUILD_DEPENDS="postgresql-dev geos-dev proj-dev libxml2-dev gtk+-dev gdal-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --with-gui $CONFIGURE_ARGS \
20 && make -j 1 && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/* $fs
27 rm -f $fs/usr/bin/shp2pgsql-gui
28 }