diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/uncrustify.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/uncrustify.rb b/Library/Formula/uncrustify.rb new file mode 100644 index 000000000..3f4cad503 --- /dev/null +++ b/Library/Formula/uncrustify.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Uncrustify <Formula + url 'http://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.55/uncrustify-0.55.tar.gz?use_mirror=kent' + homepage 'http://uncrustify.sourceforge.net/' + md5 'ecf61c26d5206bbc81367468827b55ac' + version '0.55' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" + system "make install" + end +end |
