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