aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTorsten Curdt2009-12-22 14:43:27 +0100
committerAdam Vandenberg2010-01-31 11:48:03 -0800
commit1fae0d5616fb29f351716b41b7f685a013b59315 (patch)
tree8b6d6ff43f5015c125b81ebf43b82d8191c7379d /Library
parent4c357d59c74fde8d5cc528012f48dbe95bb3de7f (diff)
downloadhomebrew-1fae0d5616fb29f351716b41b7f685a013b59315.tar.bz2
added new formula for "uncrustify"
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/uncrustify.rb13
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