homebrew-core/Formula/uncrustify.rb

14 lines
430 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Uncrustify < Formula
url 'http://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.58/uncrustify-0.58.tar.gz'
2011-05-27 05:02:55 +00:00
head 'https://github.com/bengardner/uncrustify.git'
homepage 'http://uncrustify.sourceforge.net/'
md5 '9fa275570a4422aa1cb90fbbdde79a76'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end