[arch-commits] Commit in intel-opencl-clang/repos (2 files)

Evangelos Foutras foutrelis at archlinux.org
Wed Feb 17 18:55:31 UTC 2021


    Date: Wednesday, February 17, 2021 @ 18:55:30
  Author: foutrelis
Revision: 862619

archrelease: copy trunk to community-staging-x86_64

Added:
  intel-opencl-clang/repos/community-staging-x86_64/
  intel-opencl-clang/repos/community-staging-x86_64/PKGBUILD
    (from rev 862618, intel-opencl-clang/trunk/PKGBUILD)

----------+
 PKGBUILD |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

Copied: intel-opencl-clang/repos/community-staging-x86_64/PKGBUILD (from rev 862618, intel-opencl-clang/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-02-17 18:55:30 UTC (rev 862619)
@@ -0,0 +1,32 @@
+# Maintainer: Daniel Bermond <dbermond at archlinux.org>
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+_srcname=opencl-clang
+pkgname=intel-${_srcname}
+pkgver=11.0.0
+pkgrel=2
+pkgdesc="Wrapper library around clang that can compile OpenCL C kernels to SPIR-V modules"
+arch=(x86_64)
+url="https://github.com/intel/opencl-clang/"
+license=(custom)
+depends=(clang llvm-libs spirv-llvm-translator)
+makedepends=(cmake llvm git)
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('0c0d5fb4bfc85c1c1ae4b441eea223193721ecdd3d9165bcc6f7859d90e5bf66')
+
+build() {
+    # PREFERRED_LLVM_VERSION is used to allow building with LLVM 11.1.0
+    cmake -B build -S ${_srcname}-${pkgver} \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DLLVMSPIRV_INCLUDED_IN_LLVM=OFF \
+        -DSPIRV_TRANSLATOR_DIR=/usr \
+        -DLLVM_NO_DEAD_STRIP=ON \
+        -DPREFERRED_LLVM_VERSION=11.1.0 \
+        -Wno-dev
+    make -C build
+}
+
+package() {
+    make -C build DESTDIR="${pkgdir}" install
+    install -Dm644 ${_srcname}-${pkgver}/LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



More information about the arch-commits mailing list