mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove makedepend on cuda
|
|
|
|
pkgname=opensubdiv
|
|
pkgver=3.4.4
|
|
pkgrel=4
|
|
pkgdesc="An Open-Source subdivision surface library"
|
|
arch=(x86_64)
|
|
url="http://graphics.pixar.com/opensubdiv"
|
|
license=('APACHE')
|
|
depends=('ptex' 'intel-tbb' 'libxcursor' 'xorg-xrandr' 'libxinerama')
|
|
makedepends=('cmake' 'doxygen' 'glfw' 'glew' 'python' 'python-pygments' 'python-docutils' 'opencl-headers')
|
|
source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz"
|
|
python3.patch
|
|
cuda11.patch)
|
|
sha512sums=('fc8f28b79347015c8991150535c1339e695d96947c72fadd4fa27b546a0813c1125cd175ee03bed5aacdb3609f74c4e526ef70103d1195ba9f7df041e73ea9fb'
|
|
'10f1f63e07d59deb4d91ba04448bb360efff0e41202bb6737caffbce09ba244efb349fe25b24880420b80fdadb268aed84923464af0d66ee1a36e4ba8f96cfd5'
|
|
'e67d270496b56f6337698ee7bd9f1a0c945e75cd963e5f9dd451414c92c12382525190d691de269d783cffebed0b0dae5bd8fd94e555d7bb94ae06034edc375f')
|
|
|
|
prepare() {
|
|
cd "OpenSubdiv-${pkgver//./_}"
|
|
|
|
patch -Np1 -i "${srcdir}"/python3.patch
|
|
patch -Np1 -i "${srcdir}"/cuda11.patch
|
|
mkdir build
|
|
}
|
|
|
|
build() {
|
|
cd "OpenSubdiv-${pkgver//./_}"/build
|
|
|
|
# wtf
|
|
mkdir -p CMakeFiles/osd_static_gpu.dir/osd
|
|
|
|
cmake .. \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DOSD_CUDA_NVCC_FLAGS='--gpu-architecture=sm_52' \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "OpenSubdiv-${pkgver//./_}"/build
|
|
|
|
DESTDIR="$pkgdir/" make install
|
|
|
|
rm -rf "${pkgdir}"/usr/bin
|
|
}
|