aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcrypt.rb
blob: 6ce5e47a671eed817fd71e73f9093ef901d49f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

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