aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcrypt.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/mcrypt.rb')
-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