mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
47 lines
1.6 KiB
Bash
47 lines
1.6 KiB
Bash
# Maintainer : Sven-Hendrik Haase <svenstaro@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - explicitly link v5/v6 with libatomic
|
|
|
|
pkgname=openvdb
|
|
pkgver=9.0.0
|
|
pkgrel=8
|
|
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=('boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 'log4cplus')
|
|
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=('1410b7b04b03fb09d6775ebe7b95e7c0a484d5f29c84203530ed30ccb7c061470be1abb93189010617342e57f3fecdd66a115c6d222024e68e2384a7fb196194')
|
|
|
|
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
|
|
# Try to workaround FS#72653 for now
|
|
mkdir -p "${pkgdir}"/usr/share/cmake/Modules/
|
|
ln -s /usr/lib/cmake/OpenVDB/{OpenVDBUtils,FindOpenVDB,FindBlosc}.cmake "${pkgdir}"/usr/share/cmake/Modules/
|
|
}
|
|
|
|
# vim:set sw=2 sts=2 et:
|