aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKim Hunter2013-01-16 09:52:35 +1000
committerAdam Vandenberg2013-01-15 16:40:51 -0800
commit6ff8727fbe0e42256077c7821ee14d111f9162ff (patch)
treefe65fa123fdfa95ed274e9aaa0cd6b1b96282813 /Library/Formula
parent3c598a199299e51793446da9e3e8440dd2de95cc (diff)
downloadhomebrew-6ff8727fbe0e42256077c7821ee14d111f9162ff.tar.bz2
uncrustify 0.60
Closes #17103. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uncrustify.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/uncrustify.rb b/Library/Formula/uncrustify.rb
index 291f770f9..4b5abe1d8 100644
--- a/Library/Formula/uncrustify.rb
+++ b/Library/Formula/uncrustify.rb
@@ -1,13 +1,15 @@
require 'formula'
class Uncrustify < Formula
- url 'http://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.59/uncrustify-0.59.tar.gz'
- head 'https://github.com/bengardner/uncrustify.git'
homepage 'http://uncrustify.sourceforge.net/'
- sha1 '233e4f6cb34ef7020ce49e5b5d14f0d46f277e31'
+ 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'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end