homebrew-core/Formula/udis86.rb
John Benediktsson 31455f5657 udis86 1.7.1.
Closes Homebrew/homebrew#20115.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-28 08:07:11 -07:00

17 lines
430 B
Ruby

require 'formula'
class Udis86 < Formula
homepage 'http://udis86.sourceforge.net'
url 'http://downloads.sourceforge.net/udis86/udis86-1.7.1.tar.gz'
sha1 '45fd0b93ca671683d978c7faf9eda195f0f8fde9'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}",
"--enable-shared"
system "make"
system "make install"
end
end