45 lines
1.4 KiB
Ruby
45 lines
1.4 KiB
Ruby
class Grc < Formula
|
|
include Language::Python::Shebang
|
|
|
|
desc "Colorize logfiles and command output"
|
|
homepage "http://kassiopeia.juls.savba.sk/~garabik/software/grc.html"
|
|
url "https://github.com/garabik/grc/archive/v1.13.tar.gz"
|
|
sha256 "a7b10d4316b59ca50f6b749f1d080cea0b41cb3b7258099c3eb195659d1f144f"
|
|
license "GPL-2.0-or-later"
|
|
revision 1
|
|
head "https://github.com/garabik/grc.git", branch: "devel"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, all: "841503533bb5af397541ac6231a6c836b8079d9024c5045a754759d7c163bf85"
|
|
end
|
|
|
|
depends_on "python@3.11"
|
|
|
|
conflicts_with "cc65", because: "both install `grc` binaries"
|
|
|
|
def install
|
|
# fix non-standard prefix installs
|
|
inreplace "grc", "/usr/local/etc/", "#{etc}/"
|
|
inreplace "grc.1", " /etc/", " #{etc}/"
|
|
inreplace ["grcat", "grcat.1"], "/usr/local/share/grc/", "#{pkgshare}/"
|
|
|
|
# so that the completions don't end up in etc/profile.d
|
|
inreplace "install.sh",
|
|
"mkdir -p $PROFILEDIR\ncp -fv grc.sh $PROFILEDIR", ""
|
|
|
|
rewrite_shebang detected_python_shebang, "grc", "grcat"
|
|
|
|
system "./install.sh", prefix, HOMEBREW_PREFIX
|
|
etc.install "grc.sh"
|
|
etc.install "grc.zsh"
|
|
etc.install "grc.fish"
|
|
zsh_completion.install "_grc"
|
|
end
|
|
|
|
test do
|
|
actual = pipe_output("#{bin}/grcat #{pkgshare}/conf.ls", "hello root")
|
|
assert_equal "\e[0mhello \e[0m\e[1m\e[37m\e[41mroot\e[0m", actual.chomp
|
|
end
|
|
end
|