Files
chromebrew/packages/bazel.rb
2025-12-13 07:50:00 +00:00

19 lines
575 B
Ruby

require 'package'
class Bazel < Package
description 'a fast, scalable, multi-language and extensible build system'
homepage 'https://bazel.build/'
version '8.5.0'
license 'Apache-2.0'
compatibility 'x86_64'
source_url "https://github.com/bazelbuild/bazel/releases/download/#{version}/bazel-#{version}-linux-x86_64"
source_sha256 '18255229d933b8da10151bdef223a302744296b09af8af1988c93faa1ea3c71f'
no_compile_needed
no_shrink
def self.install
FileUtils.install "bazel-#{version}-linux-#{ARCH}", "#{CREW_DEST_PREFIX}/bin/bazel", mode: 0o755
end
end