wok annotate openexr/receipt @ rev 22930
updated hiawatha (10.9 -> 10.10)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 26 15:55:59 2020 +0100 (2020-02-26) |
parents | 7744f48fe415 |
children | f14e66b3bbae |
rev | line source |
---|---|
slaxemulator@6556 | 1 # SliTaz package receipt. |
slaxemulator@6556 | 2 |
slaxemulator@6556 | 3 PACKAGE="openexr" |
Hans-G?nter@22379 | 4 VERSION="2.3.0" |
slaxemulator@6556 | 5 CATEGORY="x-window" |
Hans-G?nter@22379 | 6 SHORT_DESC="Openexr library for EXR images." |
slaxemulator@6556 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15601 | 8 LICENSE="BSD" |
Hans-G?nter@22379 | 9 WEB_SITE="https://www.openexr.com/" |
Hans-G?nter@22379 | 10 |
slaxemulator@6556 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22379 | 12 #WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL" |
Hans-G?nter@22379 | 13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" |
slaxemulator@6556 | 14 |
Hans-G?nter@22380 | 15 DEPENDS="gcc83-lib-base ilmbase zlib" |
Hans-G?nter@22380 | 16 BUILD_DEPENDS="gcc83 ilmbase-dev zlib-dev" |
pascal@15601 | 17 |
slaxemulator@6556 | 18 # Rules to configure and make the package. |
slaxemulator@6556 | 19 compile_rules() |
slaxemulator@6556 | 20 { |
Hans-G?nter@22380 | 21 ./configure \ |
Hans-G?nter@22380 | 22 CC=gcc-83 \ |
Hans-G?nter@22380 | 23 CXX=g++-83 \ |
slaxemulator@6556 | 24 $CONFIGURE_ARGS && |
Hans-G?nter@22379 | 25 make && |
Hans-G?nter@22379 | 26 make install |
slaxemulator@6556 | 27 } |
slaxemulator@6556 | 28 |
slaxemulator@6556 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@6556 | 30 genpkg_rules() |
slaxemulator@6556 | 31 { |
slaxemulator@6556 | 32 mkdir -p $fs/usr/lib |
Hans-G?nter@22379 | 33 |
Hans-G?nter@22379 | 34 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@22379 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
slaxemulator@6556 | 36 } |