mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
require 'package'
|
|
|
|
class Miller < Package
|
|
description 'Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON'
|
|
homepage 'https://miller.readthedocs.io/'
|
|
version '6.13.0'
|
|
license 'Copyright (c) 2015 - John Kerl'
|
|
compatibility 'all'
|
|
|
|
source_url({
|
|
aarch64: "https://github.com/johnkerl/miller/releases/download/v#{version}/miller-#{version}-linux-armv7.tar.gz",
|
|
armv7l: "https://github.com/johnkerl/miller/releases/download/v#{version}/miller-#{version}-linux-armv7.tar.gz",
|
|
i686: "https://github.com/johnkerl/miller/releases/download/v#{version}/miller-#{version}-linux-386.tar.gz",
|
|
x86_64: "https://github.com/johnkerl/miller/releases/download/v#{version}/miller-#{version}-linux-amd64.tar.gz"
|
|
})
|
|
source_sha256({
|
|
aarch64: 'd41ff62714a25b89601ad4e1d879aa564cc27b29bf48ca2480dbd464f7daf02d',
|
|
armv7l: 'd41ff62714a25b89601ad4e1d879aa564cc27b29bf48ca2480dbd464f7daf02d',
|
|
i686: 'e4918c33a9e39b23bc7fff0f38a9ca1165528b1932346b107ef4444281a20452',
|
|
x86_64: '6aa8f46c6f4d11cd241a3f3fad20273fadcbe1ea6ab122f4f542200e7c3b4f23'
|
|
})
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.install
|
|
FileUtils.install 'mlr', "#{CREW_DEST_PREFIX}/bin/mlr", mode: 0o755
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'mlr help' to get started.\n"
|
|
end
|
|
end
|