# Template file for 'libclc'
pkgname=libclc
version=18.1.8
revision=3
build_style=cmake
# disable clspv (failing tests, we don't ship it)
configure_args="-DCMAKE_INSTALL_PREFIX=/usr/lib/llvm/18/ -DCMAKE_BUILD_TYPE=Release
 -DLIBCLC_TARGETS_TO_BUILD=amdgcn--;amdgcn--amdhsa;r600--;nvptx--;nvptx64--;nvptx--nvidiacl;nvptx64--nvidiacl;spirv-mesa3d-;spirv64-mesa3d-"
hostmakedepends="llvm18-devel python3 libedit-devel libffi-devel
 ncurses-devel zlib-devel SPIRV-LLVM-Translator"
short_desc="Open implementation of the OpenCL C programming language"
maintainer="Daniel Martinez <danielmartinez@cock.li>"
license="BSD-3-Clause, MIT"
homepage="https://libclc.llvm.org"
distfiles="https://github.com/llvm/llvm-project/releases/download/llvmorg-${version}/libclc-${version}.src.tar.xz"
checksum=905bd59e9f810d6bd0ae6874725a8f8a3c91cb416199c03f2b98b57437cfb32e
replaces="libclc-git>=0"

alternatives="
 libclc:/usr/share/clc:/usr/lib/llvm/18/share/clc
 libclc:/usr/include/clc:/usr/lib/llvm/18/include/clc
 libclc:/usr/share/pkgconfig/libclc.pc:/usr/lib/llvm/18/share/pkgconfig/libclc.pc
"

do_configure() {
	# We really do a native build.
	# The outcome is just header files.
	unset CC CXX LD CFLAGS CXXFLAGS LDFLAGS
	mkdir -p build
	cd build
	cmake -GNinja ${configure_args} ..
}

post_install() {
	vlicense LICENSE.TXT
}
