wok view ilmbase/receipt @ rev 22787

updated fusioninventory-agent (2.4.2 -> 2.5.2)
author Hans-G?nter Theisgen
date Sun Jan 26 17:39:32 2020 +0100 (2020-01-26)
parents f3042d73dad4
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="ilmbase"
4 VERSION="2.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR."
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/openexr/$TARBALL"
13 WGET_URL="https://github.com/openexr/openexr/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="gcc83-lib-base"
16 BUILD_DEPENDS="bash gcc83"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export SHELL=/bin/bash
22 export CONFIG_SHELL=/bin/bash
24 ./configure \
25 CC=gcc-83 \
26 CXX=g++-83 \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }