aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-26 17:46:24 -0800
committerAdam Vandenberg2013-01-26 17:46:24 -0800
commit4a8df30c5a9f3578b3ab180a2e71f002dc086176 (patch)
treee3605d84ca1273b570a619adf729929b5694bde1 /Library/Formula
parent50c7df3c8a84ed170ffad4fa6d3d7dd6a4561700 (diff)
downloadhomebrew-4a8df30c5a9f3578b3ab180a2e71f002dc086176.tar.bz2
base64: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/base64.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/base64.rb b/Library/Formula/base64.rb
index aeb661006..18411c6df 100644
--- a/Library/Formula/base64.rb
+++ b/Library/Formula/base64.rb
@@ -1,12 +1,13 @@
require 'formula'
class Base64 < Formula
- url 'http://www.fourmilab.ch/webtools/base64/base64-1.5.tar.gz'
homepage 'http://www.fourmilab.ch/webtools/base64/'
+ url 'http://www.fourmilab.ch/webtools/base64/base64-1.5.tar.gz'
sha1 '25b5ae71c2818c7a489065ca1637806cd5109524'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make"
bin.install "base64"
end