Files
chromebrew/packages/platformsh.rb
2025-11-19 15:10:38 +00:00

32 lines
1.1 KiB
Ruby

require 'package'
class Platformsh < Package
description 'The unified tool for managing your Platform.sh services from the command line.'
homepage 'https://docs.platform.sh/overview/cli.html'
version '5.7.2'
license 'MIT'
compatibility 'aarch64 armv7l x86_64'
source_url "https://github.com/platformsh/cli/releases/download/#{version}/platform_#{version}_linux_amd64.tar.gz"
source_sha256 '83f2679756d48f07f6ee9cf3bd6541465ee34969bea7d9507e4ffa1de5278177'
depends_on 'php83' unless File.exist? "#{CREW_PREFIX}/bin/php"
no_compile_needed
no_shrink
print_source_bashrc
def self.install
FileUtils.install 'platform', "#{CREW_DEST_PREFIX}/bin/platform", mode: 0o755
FileUtils.install 'completion/bash/platform.bash', "#{CREW_DEST_PREFIX}/etc/bash.d/platform.bash", mode: 0o644
FileUtils.install 'completion/bash/upsun.bash', "#{CREW_DEST_PREFIX}/etc/bash.d/upsun.bash", mode: 0o644
end
def self.postinstall
ExitMessage.add "\nType 'platform -h' to get started.\n"
end
def self.postremove
Package.agree_to_remove("#{HOME}/.platformsh")
end
end