aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-28 21:39:03 -0800
committerAdam Vandenberg2013-01-28 21:40:42 -0800
commit090c6ad5df708d054eeba3be9850c0c2304ba9a2 (patch)
treec5c7785c7c06edfa3e4b4bccc847b1b94769b766 /Library
parent7be31cb6d858f6cca4c4add2b9f093b8ea966f86 (diff)
downloadhomebrew-090c6ad5df708d054eeba3be9850c0c2304ba9a2.tar.bz2
mcrypt: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mcrypt.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/mcrypt.rb b/Library/Formula/mcrypt.rb
index 967932051..1f39fdbd1 100644
--- a/Library/Formula/mcrypt.rb
+++ b/Library/Formula/mcrypt.rb
@@ -1,8 +1,8 @@
require 'formula'
class Mcrypt < Formula
- url 'http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz'
homepage 'http://mcrypt.sourceforge.net'
+ url 'http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz'
sha1 '9a426532e9087dd7737aabccff8b91abf9151a7a'
option :universal
@@ -10,7 +10,8 @@ class Mcrypt < Formula
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}", "--mandir=#{man}"
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make install"
end
end