diff options
author | James Meyer <james.meyer@operamail.com> | 2012-08-07 02:41:54 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-08-07 02:41:54 (GMT) |
commit | 69eb0f64b31595cc2859ba2db3e2e555a24afba6 (patch) | |
tree | 6b20f817db8a9464a1f6d5e44ac686d6393601d4 /abs/core | |
parent | f7821feafe58f904fbf83c2f86710ede24641495 (diff) | |
download | linhes_pkgbuild-69eb0f64b31595cc2859ba2db3e2e555a24afba6.zip linhes_pkgbuild-69eb0f64b31595cc2859ba2db3e2e555a24afba6.tar.gz linhes_pkgbuild-69eb0f64b31595cc2859ba2db3e2e555a24afba6.tar.bz2 |
ilmbase 1.0.2
Diffstat (limited to 'abs/core')
-rw-r--r-- | abs/core/ilmbase/PKGBUILD | 29 | ||||
-rw-r--r-- | abs/core/ilmbase/tests-compile-fixes.patch | 12 |
2 files changed, 33 insertions, 8 deletions
diff --git a/abs/core/ilmbase/PKGBUILD b/abs/core/ilmbase/PKGBUILD index b8930a5..fd95d6f 100644 --- a/abs/core/ilmbase/PKGBUILD +++ b/abs/core/ilmbase/PKGBUILD @@ -2,21 +2,34 @@ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=ilmbase -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 depends=('gcc-libs') -pkgdesc="IlmThread is a thread abstraction library for use with OpenEXR" +pkgdesc="Base libraries from ILM for OpenEXR" arch=(i686 x86_64) license=('custom') options=('!libtool') -source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz) -url="http://www.openexr.org" -md5sums=('f76f094e69a6079b0beb93d97e2a217e') +source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz + tests-compile-fixes.patch) +url="http://www.openexr.com" +md5sums=('26c133ee8ca48e1196fbfb3ffe292ab4' + '2687ab9ac01b417ee5cf8c0174b72e43') build() { - cd $startdir/src/$pkgname-$pkgver + cd ${srcdir}/$pkgname-$pkgver + patch -Np1 -i ${srcdir}/tests-compile-fixes.patch ./configure --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install + make +} + +check() { + cd ${srcdir}/$pkgname-$pkgver + # one of the tests fails randomly for an unknown reason + make check || true +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING } diff --git a/abs/core/ilmbase/tests-compile-fixes.patch b/abs/core/ilmbase/tests-compile-fixes.patch new file mode 100644 index 0000000..27dc24a --- /dev/null +++ b/abs/core/ilmbase/tests-compile-fixes.patch @@ -0,0 +1,12 @@ +diff -ur ilmbase-1.0.2/Imath/ImathMatrix.h ilmbase-1.0.2.new/Imath/ImathMatrix.h +--- ilmbase-1.0.2/Imath/ImathMatrix.h 2010-07-17 00:48:40.000000000 +0200 ++++ ilmbase-1.0.2.new/Imath/ImathMatrix.h 2011-04-25 10:15:21.121608420 +0200 +@@ -49,6 +49,8 @@ + #include "ImathVec.h" + #include "ImathShear.h" + ++#include <cstdlib> ++#include <cstring> + #include <iostream> + #include <iomanip> + |