mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* libgpgerror 1.47 -> libgpg_error 1.50 * rgb 1.0.6-1 -> 1.1.0 * libraw1394 2.0.5-1 -> 2.1.2 * multitail 6.4.2-1 -> 7.1.3 * quakespasm 0.93.1-1 -> 0.96.3
30 lines
1.0 KiB
Ruby
30 lines
1.0 KiB
Ruby
require 'package'
|
|
|
|
class Multitail < Package
|
|
description 'MultiTail allows you to monitor logfiles and command output in multiple windows in a terminal, colorize, filter and merge.'
|
|
homepage 'https://www.vanheusden.com/multitail/'
|
|
version '7.1.3'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/folkertvanheusden/multitail.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9b1283d41d4db63ae5f8128f518efdcf220eec40bf1e45156c1bf6919c83436e',
|
|
armv7l: '9b1283d41d4db63ae5f8128f518efdcf220eec40bf1e45156c1bf6919c83436e',
|
|
i686: '830acfcc1baecbaac8a8a3b2518b8713d8aa174357fd1222a5d6999b5ffad168',
|
|
x86_64: '8e5532a2c47fa8f690433568cb3e9d8b9d4548ff643955d85c5da69b2d1a8696'
|
|
})
|
|
|
|
depends_on 'ncurses'
|
|
|
|
def self.build
|
|
system 'make', "PREFIX=#{CREW_PREFIX}", "SYSCONFDIR=#{CREW_PREFIX}/etc"
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "PREFIX=#{CREW_PREFIX}", "SYSCONFDIR=#{CREW_PREFIX}/etc", "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|