homebrew-core/Formula/uif2iso.rb
Elmak 1478ddc387 New Formula UIF2ISO
Adding UIF2ISO - Converts MagicISO proprietary UIF files to a more standard ISO.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-30 10:22:06 -07:00

16 lines
388 B
Ruby

require 'formula'
class Uif2iso <Formula
url 'http://aluigi.org/mytoolz/uif2iso.zip'
homepage 'http://aluigi.org/mytoolz.htm#uif2iso'
md5 '2eb9797ec463c38253014d45591a7043'
version '0.1.7c'
def install
inreplace 'src/Makefile' do |contents|
contents.change_make_var! "prefix", "#{prefix}"
end
system "make -C src"
system "make -C src install"
end
end