blob: a5a1500aad1dc0c17176c6983ff86d25583f0f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|