udis86 1.7

Closes Homebrew/homebrew#6590.
This commit is contained in:
John Benediktsson 2011-07-24 21:55:13 -07:00 committed by Max Howell
parent 4d9afe26db
commit 87f077ab3f

13
Formula/udis86.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Udis86 < Formula
url 'http://downloads.sourceforge.net/udis86/udis86-1.7.tar.gz'
md5 'e279108e10f774e6c3af83caa18f5dc3'
homepage 'http://udis86.sourceforge.net'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end