blob: 2e1920a3d396a4119c71e7587aee4d6177e816b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
# Contributor: gucong <gucong43216@gmail.com>
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=embree-isa
pkgver=2.17.3
pkgrel=1
pkgdesc="A collection of high-performance ray tracing kernels (with build-time ISA detection)"
arch=('x86_64')
url="https://embree.github.io/"
license=('Apache')
depends=('intel-tbb')
provides=('embree')
conflicts=('embree')
makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
source=("embree-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz")
sha512sums=('91d78d3176b6fbf2b5be3590791ea98e94613a39e20561a2d1f7903bb395ca372b27fe433073ea9c59de87a0012a0c0b33d63311fdef92a77349bd254e3240fb')
build() {
cd "$srcdir/embree-$pkgver"
MAX_ISA="SSE2"
cat /proc/cpuinfo | grep sse3 > /dev/null && MAX_ISA="SSE3"
cat /proc/cpuinfo | grep sse4_1 > /dev/null && MAX_ISA="SSE4.1"
cat /proc/cpuinfo | grep sse4_2 > /dev/null && MAX_ISA="SSE4.2"
cat /proc/cpuinfo | grep avx > /dev/null && MAX_ISA="AVX"
cat /proc/cpuinfo | grep avx2 > /dev/null && MAX_ISA="AVX2"
# ICC required for avx512 ?
echo MAX_ISA: $MAX_ISA
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DEMBREE_TUTORIALS=OFF \
-DEMBREE_MAX_ISA="$MAX_ISA"
make
}
package() {
cd "$srcdir/embree-$pkgver"
make DESTDIR="$pkgdir" install
}
|