Angle_grinder 0.19.2 => 0.19.4 (#10191)

This commit is contained in:
Ed Reel
2024-07-23 02:44:27 -05:00
committed by GitHub
parent ca71f9c7e1
commit d507f88468
2 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1 @@
/usr/local/bin/agrind

View File

@@ -3,15 +3,20 @@ 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.2'
version '0.19.4'
license 'MIT'
compatibility 'x86_64'
source_url 'https://github.com/rcoh/angle-grinder/releases/download/v0.19.2/agrind-x86_64-unknown-linux-gnu.tar.gz'
source_sha256 '8f81734e068fe8846dd706d38ecb5eb9d5f11a420e68ce585065a971ca54b5be'
source_url "https://github.com/rcoh/angle-grinder/releases/download/v#{version}/agrind-x86_64-unknown-linux-gnu.tar.gz"
source_sha256 '2c9472b93e1250545167eacadda0ad1b72f1770208cefa969d1a24ab735c32ee'
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