require 'formula' class Dash :git def install if ARGV.build_head? system "aclocal" system "autoreconf -f -i -Wall,no-obsolete" end system "./configure", "--prefix=#{prefix}", "--with-libedit" system "make" system "make install" end end