aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Gordon2009-09-26 02:16:54 +1000
committerMax Howell2009-09-25 18:03:41 +0100
commit5eee2c2cb04a86f490dc56d8ac4bb6da220dfae9 (patch)
tree8448a5fd13127cdcc968f3b552deb6d14aeab2a9
parent1ef3d9810aecc31e24acf751a80081bf8185f400 (diff)
downloadhomebrew-5eee2c2cb04a86f490dc56d8ac4bb6da220dfae9.tar.bz2
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. :)
-rw-r--r--Library/Formula/mcrypt.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mcrypt.rb b/Library/Formula/mcrypt.rb
new file mode 100644
index 000000000..a69935875
--- /dev/null
+++ b/Library/Formula/mcrypt.rb
@@ -0,0 +1,12 @@
+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