2011-07-25 04:55:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Udis86 < Formula
|
2012-08-10 04:49:40 +00:00
|
|
|
homepage 'http://udis86.sourceforge.net'
|
2011-07-25 04:55:13 +00:00
|
|
|
url 'http://downloads.sourceforge.net/udis86/udis86-1.7.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '1a9949e33024542a24a948af5d9cbee34ff64695'
|
2011-07-25 04:55:13 +00:00
|
|
|
|
2012-08-10 04:49:40 +00:00
|
|
|
option :universal
|
2012-06-19 16:00:10 +00:00
|
|
|
|
2011-07-25 04:55:13 +00:00
|
|
|
def install
|
2012-08-10 04:49:40 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--enable-shared"
|
2011-07-25 04:55:13 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|