wok view openexr/receipt @ rev 22629

updated darkstat (3.0.713 -> 3.0.719)
author Hans-G?nter Theisgen
date Mon Jan 13 07:59:55 2020 +0100 (2020-01-13)
parents 7744f48fe415
children f14e66b3bbae
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="gcc83-lib-base ilmbase zlib"
16 BUILD_DEPENDS="gcc83 ilmbase-dev zlib-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 CC=gcc-83 \
23 CXX=g++-83 \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }