Files
chromebrew/packages/bazel.rb
2025-07-27 22:33:27 +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.3.1'
license 'Apache-2.0'
compatibility 'x86_64'
source_url "https://github.com/bazelbuild/bazel/releases/download/#{version}/bazel-#{version}-linux-x86_64"
source_sha256 '17247e8a84245f59d3bc633d0cfe0a840992a7760a11af1a30012d03da31604c'
no_compile_needed
no_shrink
def self.install
FileUtils.install "bazel-#{version}-linux-#{ARCH}", "#{CREW_DEST_PREFIX}/bin/bazel", mode: 0o755
end
end