mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
|
|
# Maintainer: Bruno Pagani <archange@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - make llvm-spirv, install doesn't work otherwise
|
|
|
|
_srcname=SPIRV-LLVM-Translator
|
|
pkgname=${_srcname,,}
|
|
pkgver=13.0.0.r27+gd7a03044
|
|
pkgrel=1
|
|
pkgdesc="Tool and a library for bi-directional translation between SPIR-V and LLVM IR"
|
|
arch=(x86_64)
|
|
url="https://github.com/KhronosGroup/SPIRV-LLVM-Translator"
|
|
license=(custom)
|
|
depends=(llvm-libs)
|
|
makedepends=(git cmake llvm spirv-headers spirv-tools)
|
|
checkdepends=(python python-setuptools clang)
|
|
# Required by ISPC
|
|
_commit=d7a030447802718de76355c248b6bb292669683b
|
|
source=(git+${url}.git#commit=$_commit)
|
|
sha256sums=(SKIP)
|
|
|
|
pkgver() {
|
|
cd ${_srcname}
|
|
git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
|
|
}
|
|
|
|
build() {
|
|
cmake -B build -S ${_srcname} \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DLLVM_INCLUDE_TESTS=ON \
|
|
-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
|
|
-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=/usr/include/spirv/ \
|
|
-Wno-dev
|
|
make -C build llvm-spirv
|
|
}
|
|
|
|
check() {
|
|
# https://github.com/KhronosGroup/SPIRV-LLVM-Translator/issues/1433
|
|
LD_LIBRARY_PATH="${srcdir}/build/lib/SPIRV" make -C build test || echo "Tests failed"
|
|
}
|
|
|
|
package() {
|
|
make -C build DESTDIR="${pkgdir}" install
|
|
install -Dm755 build/tools/llvm-spirv/llvm-spirv -t "${pkgdir}"/usr/bin
|
|
install -Dm644 ${_srcname}/LICENSE.TXT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
|
|
}
|