74c83fa9f6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
467 B
Ruby
15 lines
467 B
Ruby
require 'formula'
|
|
|
|
class Uncrustify < Formula
|
|
homepage 'http://uncrustify.sourceforge.net/'
|
|
url 'https://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.60/uncrustify-0.60.tar.gz'
|
|
sha1 '769a7649a1cefb80beff9b67b11b4b87a8cc8e0e'
|
|
|
|
head 'https://github.com/bengardner/uncrustify.git'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|