Files
chromebrew/packages/angle_grinder.rb
github-actions[bot] 22c1f1f3f1 angle_grinder 0.19.4 => 0.19.6 (#11751)
Co-authored-by: SupeChicken666 <supechicken666@gmail.com>
2025-04-19 08:29:44 +00:00

23 lines
651 B
Ruby

require 'package'
class Angle_grinder < Package
description 'Slice and dice logs on the command line'
homepage 'https://github.com/rcoh/angle-grinder'
version '0.19.6'
license 'MIT'
compatibility 'x86_64'
source_url "https://github.com/rcoh/angle-grinder/releases/download/v#{version}/agrind-x86_64-unknown-linux-gnu.tar.gz"
source_sha256 '3c3c3611c5ee86edabddcf5546715fef30e1644e474bd4a29b2eb1f8f074d626'
no_compile_needed
no_shrink
def self.install
FileUtils.install 'agrind', "#{CREW_DEST_PREFIX}/bin/agrind", mode: 0o755
end
def self.postinstall
ExitMessage.add "\nType 'agrind -h' to get started.\n"
end
end