wok annotate geos/receipt @ rev 16981

exempi: Fix wget url
author Yuri Pourre <yuripourre@gmail.com>
date Thu Aug 07 01:10:01 2014 -0300 (2014-08-07)
parents c47e4f56e593
children fe9e51a734b0
rev   line source
erjo@11629 1 # SliTaz package receipt.
erjo@11629 2
erjo@11629 3 PACKAGE="geos"
erjo@11629 4 VERSION="3.3.2"
erjo@11629 5 CATEGORY="misc"
erjo@11629 6 SHORT_DESC="Geometry Engine, Open Source."
erjo@11629 7 MAINTAINER="erjo@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
erjo@11629 9 WEB_SITE="http://trac.osgeo.org/geos/"
erjo@11629 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@11629 11 WGET_URL="http://download.osgeo.org/geos/$TARBALL"
erjo@11629 12
erjo@11629 13 DEPENDS=""
erjo@11629 14 BUILD_DEPENDS=""
erjo@11629 15
erjo@11629 16 # Rules to configure and make the package.
erjo@11629 17 compile_rules()
erjo@11629 18 {
erjo@11629 19 ./configure $CONFIGURE_ARGS && make && make install
erjo@11629 20 }
erjo@11629 21
erjo@11629 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11629 23 genpkg_rules()
erjo@11629 24 {
erjo@11629 25 mkdir -p $fs/usr/lib
erjo@11629 26 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11629 27 }