# SliTaz package receipt.

PACKAGE="geos"
VERSION="3.3.2"
CATEGORY="misc"
SHORT_DESC="Geometry Engine, Open Source."
MAINTAINER="erjo@slitaz.org"
WEB_SITE="http://trac.osgeo.org/geos/"
TARBALL="$PACKAGE-$VERSION.tar.bz2"
WGET_URL="http://download.osgeo.org/geos/$TARBALL"

DEPENDS=""
BUILD_DEPENDS=""

# Rules to configure and make the package.
compile_rules()
{
	./configure $CONFIGURE_ARGS && make && make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $install/usr/lib/*.so* $fs/usr/lib
}