vp-build/srcpkgs/shaderc/template

35 lines
1.1 KiB
Bash

# Template file for 'shaderc'
pkgname=shaderc
version=2018.0
revision=1
wrksrc="shaderc-${version}"
build_style=cmake
configure_args="-DSHADERC_SKIP_TESTS=ON"
hostmakedepends="python"
makedepends="SPIRV-Tools-devel glslang-devel"
short_desc="Collection of tools, libraries and tests for shader compilation"
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/google/shaderc"
distfiles="https://github.com/google/shaderc/archive/v${version}.tar.gz"
checksum=b96f27e7375a6df08732ebd47c18febf82bd0a87e541fd7814fd8c3aa6c8913a
pre_configure() {
# Unbundle glslang, SPIRV-Headers, SPIRV-Tools
# also remove examples
sed -i -e '/add_subdirectory(third_party)/d' \
-e '/add_subdirectory(examples)/d' CMakeLists.txt
# Disable git versioning
sed -i -e '/build-version/d' glslc/CMakeLists.txt
# Create our own build-version.inc since we disabled git versioning
# need to keep this in sync with glslang and SPIRV-Tools versions
# this is displayed with 'glslc --version'
cat <<- EOF > glslc/src/build-version.inc
"shaderc 2018.0\n"
"SPIRV-Tools-2018.6\n"
"glslang-7.10.2984\n"
EOF
}