wok-next diff geos/receipt @ rev 20557

Remove *.la files.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 07 16:01:14 2018 +0300 (2018-04-07)
parents 0b1827e0934d
children a5d7827e08cf
line diff
     1.1 --- a/geos/receipt	Sun Oct 22 19:26:43 2017 +0300
     1.2 +++ b/geos/receipt	Sat Apr 07 16:01:14 2018 +0300
     1.3 @@ -3,38 +3,25 @@
     1.4  PACKAGE="geos"
     1.5  VERSION="3.6.2"
     1.6  CATEGORY="misc"
     1.7 -SHORT_DESC="Geometry Engine, Open Source."
     1.8 +SHORT_DESC="Geometry Engine, Open Source"
     1.9  MAINTAINER="erjo@slitaz.org"
    1.10  LICENSE="LGPL2.1"
    1.11  WEB_SITE="http://trac.osgeo.org/geos/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14  WGET_URL="http://download.osgeo.org/geos/$TARBALL"
    1.15  
    1.16 -BUILD_DEPENDS=""
    1.17  SPLIT="geos-dev"
    1.18  
    1.19 -# Rules to configure and make the package.
    1.20 -compile_rules()
    1.21 -{
    1.22 -	./configure $CONFIGURE_ARGS && make && make install
    1.23 +compile_rules() {
    1.24 +	./configure $CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make install
    1.27  }
    1.28  
    1.29 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 -genpkg_rules()
    1.31 -{
    1.32 +genpkg_rules() {
    1.33  	case $PACKAGE in
    1.34 -	geos)
    1.35 -		DEPENDS="gcc-lib-base"
    1.36 -		mkdir -p $fs/usr/lib
    1.37 -		cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.38 -		;;
    1.39 -	geos-dev)
    1.40 -		CAT="development|Geos dev files."
    1.41 -		DEPENDS="geos"
    1.42 -		mkdir -p $fs/usr/bin $fs/usr/lib
    1.43 -		cp -a $install/usr/bin $fs/usr
    1.44 -		cp -a $install/usr/include $fs/usr
    1.45 -		cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.46 -		;;
    1.47 +		geos)  copy @std;;
    1.48 +		*-dev) copy @dev;;
    1.49  	esac
    1.50  }