wok view postgis/receipt @ rev 12753

dosbox: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 11 13:42:55 2012 +0200 (2012-05-11)
parents 0b2cf9528f8b
children 03afa2371fe5
line source
1 # SliTaz package receipt.
3 PACKAGE="postgis"
4 VERSION="1.5.3"
5 CATEGORY="misc"
6 SHORT_DESC="Support for geographic objects to PostgreSQL"
7 MAINTAINER="erjo@slitaz.org"
8 WEB_SITE="http://postgis.refractions.net/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://postgis.refractions.net/download/$TARBALL"
12 DEPENDS="geos proj libpostgresqlclient libxml2"
13 BUILD_DEPENDS="postgresql-dev geos-dev proj-dev libxml2-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --with-gui $CONFIGURE_ARGS \
19 && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $install/* $fs
26 rm -f $fs/usr/bin/shp2pgsql-gui
27 }