wok view openexr/receipt @ rev 23533

updated python-psutil (0.6.1 -> 5.7.0)
author Hans-G?nter Theisgen
date Mon Apr 06 15:50:05 2020 +0100 (2020-04-06)
parents 46bdefb69ece
children 848e2021d813
line source
1 # SliTaz package receipt.
3 PACKAGE="openexr"
4 VERSION="2.4.1"
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="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION/$TARBALL"
14 DEPENDS="gcc83-lib-base ilmbase zlib"
15 BUILD_DEPENDS="cmake gcc83 ilmbase-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export CC=gcc-83
21 export CXX=g++-83
23 mkdir build &&
24 cd build &&
25 cmake .. \
26 -DCMAKE_INSTALL_PREFIX=/usr &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }