wok diff ilmbase/receipt @ rev 22373

updated ilmbase and ilmbase-dev (2.2.0 -> 2.3.0)
author Hans-G?nter Theisgen
date Wed Nov 27 16:43:45 2019 +0100 (2019-11-27)
parents 1fc119985c35
children f3042d73dad4
line diff
     1.1 --- a/ilmbase/receipt	Sun Nov 17 15:00:59 2019 +0100
     1.2 +++ b/ilmbase/receipt	Wed Nov 27 16:43:45 2019 +0100
     1.3 @@ -1,27 +1,37 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ilmbase"
     1.7 -VERSION="2.2.0"
     1.8 +VERSION="2.3.0"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR"
    1.11 +SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="BSD"
    1.14 +WEB_SITE="https://www.openexr.com/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://www.openexr.org"
    1.18 -WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
    1.19 +#WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
    1.20 +WGET_URL="https://github.com/openexr/openexr/releases/download/$TARBALL"
    1.21  
    1.22 -BUILD_DEPENDS="bash"
    1.23 +DEPENDS="gcc83-lib-base"
    1.24 +BUILD_DEPENDS="bash gcc83"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	./configure $CONFIGURE_ARGS &&
    1.30 -	make && make install
    1.31 +	export	SHELL=/bin/bash
    1.32 +	export	CONFIGURE_SHELL=/bin/bash
    1.33 +
    1.34 +	./configure		\
    1.35 +		CC=gcc-83	\
    1.36 +		CXX=g++-83	\
    1.37 +		$CONFIGURE_ARGS &&
    1.38 +	make &&
    1.39 +	make install
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45  	mkdir -p $fs/usr/lib
    1.46 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.48  }