Files
chromebrew/packages/terminus.rb
2024-08-20 14:30:38 -04:00

20 lines
675 B
Ruby

require 'package'
class Terminus < Package
description 'The Pantheon CLI — a standalone utility for performing operations on the Pantheon Platform'
homepage 'https://github.com/pantheon-systems/terminus'
version '3.5.2'
license 'MIT'
compatibility 'x86_64 aarch64 armv7l'
source_url "https://github.com/pantheon-systems/terminus/releases/download/#{version}/terminus.phar"
source_sha256 'c2448f11cf002a6befeba362ba58b973bac221830b172bd4f24f16464bd9a53e'
depends_on 'php83' unless File.exist? "#{CREW_PREFIX}/bin/php"
no_compile_needed
def self.install
FileUtils.install 'terminus.phar', "#{CREW_DEST_PREFIX}/bin/terminus", mode: 0o755
end
end