aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/udis86.rb
blob: 304821ca579fa1c31c8cbcb50c70c8c448b2f42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Udis86 < Formula
  url 'http://downloads.sourceforge.net/udis86/udis86-1.7.tar.gz'
  md5 'e279108e10f774e6c3af83caa18f5dc3'
  homepage 'http://udis86.sourceforge.net'

  def options
    [["--universal", "Build a universal binary."]]
  end

  def install
    ENV.universal_binary if ARGV.build_universal?
    system "./configure", "--enable-shared", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end