2009-12-22 13:43:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Uncrustify <Formula
|
2010-04-18 04:23:44 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.56/uncrustify-0.56.tar.gz'
|
2010-05-14 21:19:31 +00:00
|
|
|
head 'git://github.com/bengardner/uncrustify.git'
|
2009-12-22 13:43:27 +00:00
|
|
|
homepage 'http://uncrustify.sourceforge.net/'
|
2010-04-18 04:23:44 +00:00
|
|
|
md5 '991ee882a265fa28f23f747737bce740'
|
2009-12-22 13:43:27 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|