diff options
| author | Elmak | 2010-03-13 16:50:46 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-30 10:22:06 -0700 |
| commit | b1ce2c92ff453a2fe4061b31db6320ed0c0b684e (patch) | |
| tree | 9a0944dff3ac163be40589d2a8dcbb3470d621a0 /Library | |
| parent | 404cc2b4b48f5a6d413dc5f3111fe3e714764c24 (diff) | |
| download | homebrew-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')
| -rw-r--r-- | Library/Formula/uif2iso.rb | 16 |
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 |
