aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcrypt.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/mcrypt.rb')
-rwxr-xr-xLibrary/Formula/mcrypt.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/mcrypt.rb b/Library/Formula/mcrypt.rb
index 4786f0b66..17c1b901c 100755
--- a/Library/Formula/mcrypt.rb
+++ b/Library/Formula/mcrypt.rb
@@ -5,9 +5,14 @@ class Mcrypt <Formula
homepage 'http://mcrypt.sourceforge.net'
md5 '0821830d930a86a5c69110837c55b7da'
+ def options
+ [["--universal", "Build a universal binary."]]
+ end
+
def install
ENV.universal_binary if ARGV.include? "--universal"
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end