4664be1543
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
312 B
Ruby
13 lines
312 B
Ruby
require 'formula'
|
|
|
|
class Uif2iso < Formula
|
|
homepage 'http://aluigi.org/mytoolz.htm#uif2iso'
|
|
url 'http://aluigi.org/mytoolz/uif2iso.zip'
|
|
md5 '2eb9797ec463c38253014d45591a7043'
|
|
version '0.1.7c'
|
|
|
|
def install
|
|
system "make -C src"
|
|
system "make", "-C", "src", "prefix=#{prefix}", "install"
|
|
end
|
|
end
|