homebrew-core/Formula/hilite.rb
2015-06-05 14:47:57 +01:00

17 lines
481 B
Ruby

require 'formula'
class Hilite < Formula
desc "CLI tool that runs a command and highlights STDERR output"
homepage 'http://sourceforge.net/projects/hilite/'
url 'https://downloads.sourceforge.net/project/hilite/hilite/1.5/hilite.c'
sha1 '96d551f1aae966d901e12076b59efd3e350e4192'
def install
system "#{ENV.cc} #{ENV.cflags} hilite.c -o hilite"
bin.install 'hilite'
end
test do
system "#{bin}/hilite", "bash", "-c", "echo 'stderr in red' >&2"
end
end