# HG changeset patch # User Hans-G?nter Theisgen # Date 1574869425 -3600 # Node ID a1edbdbd0231d586e466d78a38f6382102dde7bc # Parent b1276b2c9dc164bc61e1b05d2b382569b43ccfc1 updated ilmbase and ilmbase-dev (2.2.0 -> 2.3.0) diff -r b1276b2c9dc1 -r a1edbdbd0231 ilmbase-dev/receipt --- a/ilmbase-dev/receipt Tue Nov 26 17:42:45 2019 +0100 +++ b/ilmbase-dev/receipt Wed Nov 27 16:43:45 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="ilmbase-dev" -VERSION="2.2.0" +VERSION="2.3.0" CATEGORY="development" -SHORT_DESC="devel files for ilmbase" +SHORT_DESC="Development files for ilmbase." MAINTAINER="slaxemulator@gmail.com" LICENSE="BSD" -WEB_SITE="http://www.openexr.org/" -WANTED="ilmbase" +WEB_SITE="https://www.openexr.com/" DEPENDS="ilmbase pkg-config" +WANTED="ilmbase" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.*a $fs/usr/lib } diff -r b1276b2c9dc1 -r a1edbdbd0231 ilmbase/receipt --- a/ilmbase/receipt Tue Nov 26 17:42:45 2019 +0100 +++ b/ilmbase/receipt Wed Nov 27 16:43:45 2019 +0100 @@ -1,27 +1,37 @@ # SliTaz package receipt. PACKAGE="ilmbase" -VERSION="2.2.0" +VERSION="2.3.0" CATEGORY="x-window" -SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR" +SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR." MAINTAINER="slaxemulator@gmail.com" LICENSE="BSD" +WEB_SITE="https://www.openexr.com/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.openexr.org" -WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL" +#WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL" +WGET_URL="https://github.com/openexr/openexr/releases/download/$TARBALL" -BUILD_DEPENDS="bash" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="bash gcc83" # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && - make && make install + export SHELL=/bin/bash + export CONFIGURE_SHELL=/bin/bash + + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + $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 + cp -a $install/usr/lib/*.so* $fs/usr/lib }