mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
23 lines
588 B
Ruby
23 lines
588 B
Ruby
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
|