Files
chromebrew/packages/bun.rb
2025-12-19 06:11:18 +00:00

23 lines
588 B
Ruby
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
require 'package'
class Bun < Package
description 'Incredibly fast JavaScript runtime, bundler, test runner, and package manager all in one'
homepage 'https://bun.sh/'
version '1.3.5'
license 'MIT'
compatibility 'x86_64'
source_url 'SKIP'
no_compile_needed
no_shrink
def self.install
system "curl -fsSL https://bun.sh/install | BUN_INSTALL='#{CREW_DEST_PREFIX}' bash -s 'bun-v#{version}'"
FileUtils.ln_sf "#{CREW_PREFIX}/bin/bun", "#{CREW_DEST_PREFIX}/bin/bunx"
end
def self.postinstall
ExitMessage.add "\nType 'bun' to get started.\n"
end
end