require 'package' class Github_cli < Package description 'Official Github CLI tool' homepage 'https://cli.github.com/' version '2.72.0' license 'MIT' compatibility 'all' source_url({ aarch64: "https://github.com/cli/cli/releases/download/v#{version}/gh_#{version}_linux_armv6.tar.gz", armv7l: "https://github.com/cli/cli/releases/download/v#{version}/gh_#{version}_linux_armv6.tar.gz", i686: "https://github.com/cli/cli/releases/download/v#{version}/gh_#{version}_linux_386.tar.gz", x86_64: "https://github.com/cli/cli/releases/download/v#{version}/gh_#{version}_linux_amd64.tar.gz" }) source_sha256({ aarch64: 'a505a64e16619f146c1abe7002a083d91a6bd05a4bda166c6c8f9005897613b2', armv7l: 'a505a64e16619f146c1abe7002a083d91a6bd05a4bda166c6c8f9005897613b2', i686: '5b6e695d574f6c3036c7ec0bdd014ce97239998d5ce987c9ea6b3547650845e5', x86_64: 'ffd3a9791075cf6119531302b06554e658f38ed12675a7fbfbf4d6b114c77f38' }) no_compile_needed no_shrink no_strip # ./usr/local/bin/gh: 1: ./usr/local/bin/gh: Syntax error: redirection unexpected (expecting ")") def self.install FileUtils.install 'bin/gh', "#{CREW_DEST_PREFIX}/bin/gh", mode: 0o755 FileUtils.mv 'share', CREW_DEST_PREFIX end end