homebrew-core/Formula/mcrypt.rb
Boris Gordon 57cda21b6e MCrypt formula
MCrypt is a replacement for the old crypt() package and crypt(1) command, with
extensions. It allows developers to use a wide range of encryption functions,
without making drastic changes to their code. It allows users to encrypt
files or data streams without having to be cryptographers. Above all, it
allows you to have some really neat code on your machine. :)
2009-09-25 18:03:41 +01:00

12 lines
360 B
Ruby

require 'brewkit'
class Mcrypt <Formula
@url='ftp://mirror.internode.on.net/pub/gentoo/distfiles/libmcrypt-2.5.8.tar.gz'
@homepage='http://mcrypt.sourceforge.net'
@md5='0821830d930a86a5c69110837c55b7da'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end