wok-stable annotate ilmbase/receipt @ rev 11386

Compat: ensure that pam WGET_URL is non-https. Otherwise tazwok can't download it at cook-toolchain time
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 04:42:49 2011 +0100 (2011-12-10)
parents 7ef6b00b9685
children
rev   line source
slaxemulator@6555 1 # SliTaz package receipt.
slaxemulator@6555 2
slaxemulator@6555 3 PACKAGE="ilmbase"
slaxemulator@10196 4 VERSION="1.0.2"
slaxemulator@6555 5 CATEGORY="x-window"
slaxemulator@6555 6 SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR"
slaxemulator@6555 7 MAINTAINER="slaxemulator@gmail.com"
slaxemulator@6555 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6555 9 WEB_SITE="http://www.openexr.org"
slaxemulator@6555 10 WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
slaxemulator@6555 11
slaxemulator@6555 12 # Rules to configure and make the package.
slaxemulator@6555 13 compile_rules()
slaxemulator@6555 14 {
slaxemulator@6555 15 cd $src
slaxemulator@10196 16 ./configure $CONFIGURE_ARGS &&
slaxemulator@10196 17 make && make install
slaxemulator@6555 18 }
slaxemulator@6555 19
slaxemulator@6555 20 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6555 21 genpkg_rules()
slaxemulator@6555 22 {
slaxemulator@6555 23 mkdir -p $fs/usr/lib
slaxemulator@6555 24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
slaxemulator@6555 25 }
slaxemulator@6555 26