mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
25 lines
918 B
Ruby
25 lines
918 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Multitail < CMake
|
|
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.5'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/folkertvanheusden/multitail.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '0e9d7d2bdb9f328d92e366c5d908e8fdb94c12cd8aeb0331fa7921595ce6321e',
|
|
armv7l: '0e9d7d2bdb9f328d92e366c5d908e8fdb94c12cd8aeb0331fa7921595ce6321e',
|
|
i686: '72d384d94f5dc87c27e9afa704e7343b02618573413522a39f04527c4fd359bb',
|
|
x86_64: 'eb31ec5a22057605bfc74da263eb0bff38c84f20b73e9d1092fc3c2b420bf781'
|
|
})
|
|
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'ncurses' => :executable
|
|
|
|
cmake_options "-DCMAKE_C_FLAGS='-I#{CREW_PREFIX}/include/ncursesw'"
|
|
end
|