Files
chromebrew/packages/angle_grinder.rb
Maximilian Downey Twiss 267f8d4087 Rename some packages starting with a (#8831)
* Change arping homepage to match Anitya

* Rename acli to acquia_cli

* Rename agrind to angle_grinder

* Rename apriconv to apr_iconv

* Rename aprutil to apr_util
2023-10-26 06:48:42 -04:00

18 lines
546 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.2'
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'
no_compile_needed
def self.install
FileUtils.install 'agrind', "#{CREW_DEST_PREFIX}/bin/agrind", mode: 0o755
end
end