# Maintainer : Sven-Hendrik Haase # ALARM: Kevin Mihelich # - explicitly link v5/v6 with libatomic pkgname=openvdb pkgver=8.0.1 pkgrel=1 pkgdesc='A large suite of tools for the efficient storage and manipulation of sparse volumetric data discretized on three-dimensional grids' url='https://github.com/dreamworksanimation/openvdb' arch=('x86_64') license=('MPL') depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 'log4cplus' 'openexr') makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 'python' 'python-numpy' 'ninja') optdepends=('glfw: for tools' 'glu: for tools' 'python-numpy: python module') source=("$pkgname-$pkgver.tar.gz::https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz") sha512sums=('6a5a8b637429295efa72494aef82ff92dd83092591b713f56930ccf4aab3a33806d1263bfd090c27239eab97b4fdc053288dc545e631f8a7d4ca180a32331be2') build() { cd "${srcdir}/${pkgname}-${pkgver}" [[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS" cmake \ -Bbuild \ -GNinja \ -DUSE_NUMPY=ON \ -DUSE_LOG4CPLUS=ON \ -DCMAKE_INSTALL_PREFIX=/usr \ -DOPENVDB_BUILD_PYTHON_MODULE=ON \ -DOPENVDB_BUILD_DOCS=ON \ -DOPENVDB_BUILD_UNITTESTS=OFF ninja -C build } package() { cd "${srcdir}/${pkgname}-${pkgver}/build" DESTDIR="${pkgdir}" ninja install } # vim:set sw=2 sts=2 et: