diff --git a/Formula/udis86.rb b/Formula/udis86.rb new file mode 100644 index 0000000000..eeeb3a0145 --- /dev/null +++ b/Formula/udis86.rb @@ -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