31 lines
871 B
Bash
31 lines
871 B
Bash
# Template file for 'ispc'
|
|
pkgname=ispc
|
|
version=1.15.0
|
|
revision=1
|
|
archs="x86_64*"
|
|
build_style=cmake
|
|
configure_args="-DISPC_NO_DUMPS=ON -DARM_ENABLED=OFF"
|
|
hostmakedepends="clang clang-tools-extra python3 m4 bison flex llvm"
|
|
makedepends="ncurses-devel ncurses-libtinfo-devel zlib-devel"
|
|
short_desc="Compiler for high-performance SIMD programming on the CPU"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://ispc.github.io"
|
|
distfiles="https://github.com/ispc/ispc/archive/v${version}.tar.gz"
|
|
checksum=2658ff00dc045ac9fcefbf6bd26dffaf723b059a942a27df91bbb61bc503a285
|
|
patch_args="-p1"
|
|
nocross=yes
|
|
nopie=yes
|
|
|
|
# hack to make -m32 work so it can build 32-bit target
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64) hostmakedepends+=" gcc-multilib";;
|
|
esac
|
|
|
|
pre_build() {
|
|
sed -i '/tinfo/d' CMakeLists.txt
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt
|
|
}
|