2009-12-22 13:43:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Uncrustify < Formula
|
2009-12-22 13:43:27 +00:00
|
|
|
homepage 'http://uncrustify.sourceforge.net/'
|
2013-01-15 23:52:35 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.60/uncrustify-0.60.tar.gz'
|
|
|
|
sha1 '769a7649a1cefb80beff9b67b11b4b87a8cc8e0e'
|
|
|
|
|
|
|
|
head 'https://github.com/bengardner/uncrustify.git'
|
2009-12-22 13:43:27 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-15 23:52:35 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-12-22 13:43:27 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|