diff options
author | Sertonix <sertonix@posteo.net> | 2024-09-06 13:24:11 +0200 |
---|---|---|
committer | Celeste <20312-Celeste@users.gitlab.alpinelinux.org> | 2024-09-06 13:33:03 +0000 |
commit | 5d39c08e6edcd4e5a776a267711b66f374ec0dde (patch) | |
tree | dd7a89935eb0a253903957d48c33a936cc609995 | |
parent | ad10779b629b53811d8b9620cb0a676ccefcea87 (diff) | |
download | aports-5d39c08e6edcd4e5a776a267711b66f374ec0dde.zip |
testing/embree3: remove
The last usage of embree3 has been removed in 369f7de33c4
-rw-r--r-- | testing/embree3/APKBUILD | 47 | ||||
-rw-r--r-- | testing/embree3/fix-install-detection.patch | 14 |
2 files changed, 0 insertions, 61 deletions
diff --git a/testing/embree3/APKBUILD b/testing/embree3/APKBUILD deleted file mode 100644 index 6f37a21a105..00000000000 --- a/testing/embree3/APKBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Contributor: Leon Marz <main@lmarz.org> -# Maintainer: Leon Marz <main@lmarz.org> -pkgname=embree3 -pkgver=3.13.5 -pkgrel=2 -pkgdesc="High Performance Ray Tracing Kernels" -url="https://www.embree.org/" -arch="aarch64 x86_64" # embree needs sse2 and 64 bit -license="Apache-2.0" -makedepends="clang cmake onetbb-dev samurai" -subpackages="$pkgname-dev" -source="embree-$pkgver.tar.gz::https://github.com/embree/embree/archive/v$pkgver.tar.gz - fix-install-detection.patch - " -options="!check" # no tests provided -builddir="$srcdir/embree-$pkgver" - -# has the same files as embree<4 -replaces="embree" - -build() { - # takes significantly less memory allowing higher than -j4 - export CC=clang - export CXX=clang++ - - # build shared library - cmake -B build -G Ninja \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DBUILD_SHARED_LIBS=True \ - -DCMAKE_BUILD_TYPE=Release \ - -DEMBREE_ISPC_SUPPORT=OFF \ - -DEMBREE_TUTORIALS=OFF \ - -DEMBREE_RAY_MASK=ON - cmake --build build -} - -package() { - DESTDIR="$pkgdir" cmake --install build - cd "$pkgdir" - rm -r usr/share -} - -sha512sums=" -13ae19b1750197fb4887ba601c75d1b54b3c388224672b6561dd922bc9b9747139cf46ce554727e3afa13dcf152ce4d703935cb9105ced792b011f2d05fa3e95 embree-3.13.5.tar.gz -c21523a6b7b20829a9c589eaba1d5fa235f123557d0ab59804e315002410a4ae1c3793d53ba114cf13c0cd008c54a4bf3d4781b5877d7ecdcbf4970ae2950324 fix-install-detection.patch -" diff --git a/testing/embree3/fix-install-detection.patch b/testing/embree3/fix-install-detection.patch deleted file mode 100644 index a50e9927755..00000000000 --- a/testing/embree3/fix-install-detection.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/common/cmake/installTBB.cmake -+++ b/common/cmake/installTBB.cmake -@@ -1,11 +1,6 @@ - ## Copyright 2009-2021 Intel Corporation - ## SPDX-License-Identifier: Apache-2.0 - --IF (EMBREE_STATIC_LIB) -- INSTALL(TARGETS TBB EXPORT TBB-targets) -- INSTALL(EXPORT TBB-targets DESTINATION "${EMBREE_CMAKEEXPORT_DIR}" COMPONENT devel) --ENDIF() -- - IF (EMBREE_INSTALL_DEPENDENCIES) - IF (TARGET TBB::tbb) - GET_TARGET_PROPERTY(LIB_PATH TBB::tbb IMPORTED_LOCATION_RELEASE) |