mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
removed community/openvdb
This commit is contained in:
parent
c4cfa94a11
commit
1c79d27727
1 changed files with 0 additions and 46 deletions
|
@ -1,46 +0,0 @@
|
|||
# Maintainer : Sven-Hendrik Haase <svenstaro@archlinux.org>
|
||||
|
||||
# remove when bumped upstream
|
||||
|
||||
pkgname=openvdb
|
||||
pkgver=9.0.0
|
||||
pkgrel=9.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=('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:
|
Loading…
Reference in a new issue