Files
chromebrew/packages/acquia_cli.rb
2025-06-15 07:10:02 +00:00

26 lines
1.0 KiB
Ruby

require 'package'
class Acquia_cli < Package
description 'Acquia CLI - The official command-line tool for interacting with the Drupal Cloud Platform and services.'
homepage 'https://github.com/acquia/cli'
version '2.42.0'
license 'GPL-2.0'
compatibility 'aarch64 armv7l x86_64'
source_url "https://github.com/acquia/cli/releases/download/#{version}/acli.phar"
source_sha256 'f7952b01f9690a68836891a9dea58d7f3804a43afa4b371b1aafdc3ab82ecd89'
depends_on 'php83' unless File.exist? "#{CREW_PREFIX}/bin/php"
no_compile_needed
def self.preflight
major = `php -v 2> /dev/null | head -1 | cut -d' ' -f2 | cut -d'.' -f1`
minor = `php -v 2> /dev/null | head -1 | cut -d' ' -f2 | cut -d'.' -f2`
abort "acli requires php >= 8.2. php#{major.chomp}#{minor.chomp} does not meet the minimum requirement.".lightred unless major.empty? || minor.empty? || ((major.to_i >= 8) && (minor.to_i >= 2))
end
def self.install
FileUtils.install 'acli.phar', "#{CREW_DEST_PREFIX}/bin/acli", mode: 0o755
end
end