mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
38 lines
1.5 KiB
Ruby
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.5.1'
|
|
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: '2bace0dfaac388a93125f76502ef0bc90406e7e43dd9f07c51188261fb6b8b45',
|
|
armv7l: '2bace0dfaac388a93125f76502ef0bc90406e7e43dd9f07c51188261fb6b8b45',
|
|
x86_64: 'bb9b5f7f8060007354d75da92fc6430c77ba074cf81bfa2156f1ba373ff477e5'
|
|
})
|
|
|
|
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
|