aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcrypt.rb
blob: 4786f0b6625d0897c1eb9da60fbd91e174bead81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    ENV.universal_binary if ARGV.include? "--universal"
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
    system "make install"
  end
end