7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
368 B
Ruby
16 lines
368 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 |s|
|
|
s.change_make_var! "prefix", prefix
|
|
end
|
|
system "make -C src"
|
|
system "make -C src install"
|
|
end
|
|
end
|