wok view openexr/receipt @ rev 22379

updated openexr (2.2.0 -> 2.3.0)
author Hans-G?nter Theisgen
date Thu Nov 28 08:53:20 2019 +0100 (2019-11-28)
parents 289e794fc5bc
children 46bdefb69ece
line source
1 # SliTaz package receipt.
3 PACKAGE="openexr"
4 VERSION="2.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Openexr library for EXR images."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://www.openexr.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 #WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="ilmbase zlib"
16 BUILD_DEPENDS="ilmbase-dev zlib-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }