mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
community/openvdb to 6.1.0-1
This commit is contained in:
parent
8e22088453
commit
f3c17f8b71
1 changed files with 19 additions and 14 deletions
|
@ -1,36 +1,37 @@
|
||||||
# Maintainer : Sven-Hendrik Haase <sh@lutzhaase.com>
|
# Maintainer : Sven-Hendrik Haase <svenstaro@gmail.com>
|
||||||
|
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
# - explicitly link v5/v6 with libatomic
|
# - explicitly link v5/v6 with libatomic
|
||||||
|
|
||||||
pkgname=openvdb
|
pkgname=openvdb
|
||||||
pkgver=6.0.0
|
pkgver=6.1.0
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc='A large suite of tools for the efficient storage and manipulation of sparse volumetric data discretized on three-dimensional grids'
|
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'
|
url='https://github.com/dreamworksanimation/openvdb'
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
license=('MPL')
|
license=('MPL')
|
||||||
depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc')
|
depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc')
|
||||||
makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 'python-numpy')
|
makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 'python' 'python-numpy')
|
||||||
optdepends=('glfw: for tools'
|
optdepends=('glfw: for tools'
|
||||||
'glu: for tools'
|
'glu: for tools'
|
||||||
'python-numpy: python module')
|
'python-numpy: python module')
|
||||||
source=("https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz"
|
source=("https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz"
|
||||||
'boost-1.67.patch')
|
https://patch-diff.githubusercontent.com/raw/AcademySoftwareFoundation/openvdb/pull/428.patch)
|
||||||
sha512sums=('6b9e267fff46647b39e1e6faa12059442196c1858df1fda1515cfc375e25bc3033e2828c80e63a652509cfba386376e022cebf81ec85aaccece421b0c721529b'
|
sha512sums=('99ebbb50104ef87792ab73989e8714c4f283fb02d04c3033126b5f0d927ff7bbdebe35c8214ded841692941d8ed8ae551fd6d1bf90ad7dc07bedc3b38b9c4b38'
|
||||||
'48075304517a9e0f52d5c22c575a22fb7904c743262652d4abe1028bfc540d4f5a8a97bd754acbb3959a7c148d12c7e55a71bd630e59bf4fe51433ac9dca4372')
|
'2eba70b5dde0d9f319841963a93f74915ecc65a13629fec282a04ceb260f30dd475c43b445e7bb121dbc0381c638ddbae102775279aef46b80b1d3093497b916')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
patch -Np1 -i ../boost-1.67.patch
|
|
||||||
sed -i "s|DESTINATION docs|DESTINATION share/doc/$pkgname|" openvdb/CMakeLists.txt
|
sed -i "s|DESTINATION docs|DESTINATION share/doc/$pkgname|" openvdb/CMakeLists.txt
|
||||||
|
sed -i "s/MINIMUM_PYTHON_VERSION 2.7/MINIMUM_PYTHON_VERSION 3.7/g" CMakeLists.txt
|
||||||
|
|
||||||
|
patch -Np1 -i "$srcdir"/428.patch
|
||||||
|
|
||||||
|
mkdir build
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd "${srcdir}/${pkgname}-${pkgver}"/build
|
||||||
|
|
||||||
[[ -d build ]] && rm -rf build
|
|
||||||
mkdir build && cd build
|
|
||||||
|
|
||||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
|
||||||
export CXXFLAGS="${CXXFLAGS} -DPY_OPENVDB_USE_NUMPY"
|
export CXXFLAGS="${CXXFLAGS} -DPY_OPENVDB_USE_NUMPY"
|
||||||
|
@ -47,9 +48,13 @@ build() {
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
-DOPENVDB_BUILD_PYTHON_MODULE=ON \
|
-DOPENVDB_BUILD_PYTHON_MODULE=ON \
|
||||||
-DOPENVDB_BUILD_DOCS=ON \
|
-DOPENVDB_BUILD_DOCS=ON \
|
||||||
-DOPENVDB_ABI_VERSION_NUMBER=3 \
|
-DOPENVDB_BUILD_UNITTESTS=OFF \
|
||||||
-DOPENVDB_BUILD_UNITTESTS=OFF
|
-DPYTHON_INCL_DIR=/usr/include/python3.7m \
|
||||||
|
-DPYTHON_INCLUDE_DIR=/usr/include/python3.7m \
|
||||||
|
-DPYTHON_LIB_DIR=/usr/lib \
|
||||||
|
-DPython_LIBRARY=/usr/lib/libpython3.7m.so \
|
||||||
|
|
||||||
|
sed -i "s/isystem/I/g" $(find . -name flags.make)
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue