wok view postgis/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents ba7a5b27465c
children 851e4e7e4f69
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 && 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 }