aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorElmak2010-03-13 16:50:46 -0500
committerAdam Vandenberg2010-03-30 10:22:06 -0700
commitb1ce2c92ff453a2fe4061b31db6320ed0c0b684e (patch)
tree9a0944dff3ac163be40589d2a8dcbb3470d621a0 /Library/Formula
parent404cc2b4b48f5a6d413dc5f3111fe3e714764c24 (diff)
downloadhomebrew-b1ce2c92ff453a2fe4061b31db6320ed0c0b684e.tar.bz2
New Formula UIF2ISO
Adding UIF2ISO - Converts MagicISO proprietary UIF files to a more standard ISO. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uif2iso.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/uif2iso.rb b/Library/Formula/uif2iso.rb
new file mode 100644
index 000000000..a5a1500aa
--- /dev/null
+++ b/Library/Formula/uif2iso.rb
@@ -0,0 +1,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