homebrew-core/Formula/udis86.rb

18 lines
428 B
Ruby
Raw Normal View History

require 'formula'
class Udis86 < Formula
2012-08-10 04:49:40 +00:00
homepage 'http://udis86.sourceforge.net'
url 'http://downloads.sourceforge.net/udis86/udis86-1.7.tar.gz'
sha1 '1a9949e33024542a24a948af5d9cbee34ff64695'
2012-08-10 04:49:40 +00:00
option :universal
def install
2012-08-10 04:49:40 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}",
"--enable-shared"
system "make"
system "make install"
end
end