homebrew-core/Formula/gnu-indent.rb
2019-01-11 08:44:19 +01:00

55 lines
1.5 KiB
Ruby

class GnuIndent < Formula
desc "C code prettifier"
homepage "https://www.gnu.org/software/indent/"
url "https://ftp.gnu.org/gnu/indent/indent-2.2.12.tar.gz"
mirror "https://ftpmirror.gnu.org/indent/indent-2.2.12.tar.gz"
sha256 "e77d68c0211515459b8812118d606812e300097cfac0b4e9fb3472664263bb8b"
bottle do
rebuild 3
sha256 "424a7f469abb096382488440e00d55021d97405d8e72948cff93fb7826f71285" => :mojave
sha256 "ef3e9fa08a9cf100dcd9d5e85a17c88791b78fee201eba5ce8935da5072e4670" => :high_sierra
sha256 "73fb630f7391e4598bfeb823637f67ba8741926133813f00bde91dfd8a4f2972" => :sierra
end
depends_on "gettext"
def install
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--mandir=#{man}
--program-prefix=g
]
system "./configure", *args
system "make", "install"
(libexec/"gnubin").install_symlink bin/"gindent" => "indent"
(libexec/"gnuman/man1").install_symlink man1/"gindent.1" => "indent.1"
libexec.install_symlink "gnuman" => "man"
end
def caveats; <<~EOS
GNU "indent" has been installed as "gindent".
If you need to use it as "indent", you can add a "gnubin" directory
to your PATH from your bashrc like:
PATH="#{opt_libexec}/gnubin:$PATH"
EOS
end
test do
(testpath/"test.c").write("int main(){ return 0; }")
system "#{bin}/gindent", "test.c"
assert_equal File.read("test.c"), <<~EOS
int
main ()
{
return 0;
}
EOS
end
end