mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* shaderc => 2025.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Pare back compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to shaderc * Add built packages for linux/arm/v7 to shaderc --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
# Adapted from Arch Linux shaderc PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/shaderc/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/cmake'
|
|
|
|
class Shaderc < CMake
|
|
description 'Collection of tools, libraries and tests for shader compilation'
|
|
homepage 'https://github.com/google/shaderc'
|
|
version '2025.1'
|
|
license 'Apache-2.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/google/shaderc.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4d58609c7931481b599123cf4f3ea7d7dd6c0604e05845e6a17f5ac73208fede',
|
|
armv7l: '4d58609c7931481b599123cf4f3ea7d7dd6c0604e05845e6a17f5ac73208fede',
|
|
i686: 'd0b7a92f5021b97f5c9e0ec229acae6f2820b8b38a037755c526328458442c7c',
|
|
x86_64: '652ec3178fd6cdbfa37d86c043bf6e2da1530c11a2892b9e6847ed2aa395b67a'
|
|
})
|
|
|
|
depends_on 'ruby_asciidoctor' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glslang' # R
|
|
depends_on 'spirv_headers' => :build
|
|
depends_on 'spirv_tools' # R
|
|
|
|
def self.patch
|
|
system './utils/git-sync-deps'
|
|
end
|
|
|
|
cmake_options '-DSPIRV_WERROR=Off \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-DSHADERC_SKIP_TESTS=ON \
|
|
-DSHADERC_ENABLE_EXAMPLES=OFF'
|
|
end
|