Files
chromebrew/packages/powershell.rb
2026-03-22 01:01:03 +00:00

38 lines
1.5 KiB
Ruby

require 'package'
class Powershell < Package
description 'Powershell is a cross-platform, task-based command-line shell and scripting language that helps rapidly automate tasks that manage operating systems and processes'
homepage 'https://learn.microsoft.com/en-us/powershell/'
version '7.6.0'
license 'MIT'
compatibility 'aarch64 armv7l x86_64'
min_glibc '2.34'
source_url({
aarch64: "https://github.com/PowerShell/PowerShell/releases/download/v#{version}/powershell-#{version}-linux-arm32.tar.gz",
armv7l: "https://github.com/PowerShell/PowerShell/releases/download/v#{version}/powershell-#{version}-linux-arm32.tar.gz",
x86_64: "https://github.com/PowerShell/PowerShell/releases/download/v#{version}/powershell-#{version}-linux-x64.tar.gz"
})
source_sha256({
aarch64: 'ecdff7807c239adf6a600632e8e686367a10f23fb2435c668fbe19b06dcc136e',
armv7l: 'ecdff7807c239adf6a600632e8e686367a10f23fb2435c668fbe19b06dcc136e',
x86_64: '04517472cf57d7f9cbd93897da9bed467c73ca6063c29d7655ebc20aa1d6023f'
})
depends_on 'xdg_base'
no_compile_needed
no_shrink
def self.install
FileUtils.mkdir_p %W[#{CREW_DEST_PREFIX}/bin #{CREW_DEST_PREFIX}/share/powershell]
FileUtils.cp_r Dir['*'], "#{CREW_DEST_PREFIX}/share/powershell"
FileUtils.chmod 0o755, "#{CREW_DEST_PREFIX}/share/powershell/pwsh"
FileUtils.ln_s "#{CREW_PREFIX}/share/powershell/pwsh", "#{CREW_DEST_PREFIX}/bin/pwsh"
end
def self.postinstall
ExitMessage.add "\nTo get started, execute 'pwsh'.\n"
end
end