homebrew-core/Formula/mcrypt.rb

18 lines
517 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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",
2013-01-29 05:39:03 +00:00
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end