8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
517 B
Ruby
17 lines
517 B
Ruby
require 'formula'
|
|
|
|
class Mcrypt < Formula
|
|
homepage 'http://mcrypt.sourceforge.net'
|
|
url 'http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz'
|
|
sha1 '9a426532e9087dd7737aabccff8b91abf9151a7a'
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|